testing framework: perform a plan before starting any tests (#33561)

This commit is contained in:
Liam Cervante
2023-07-26 10:24:25 +02:00
committed by GitHub
parent 083c9afd5b
commit 080ddead6e
4 changed files with 123 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
run "test" {
variables {
input = "Hello, world!"
}
assert {
condition = test_resource.resource.value == "Hello, world!"
error_message = "wrong condition"
}
}