You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/cloud/testdata/test-verbose/main.tftest.hcl

21 lines
350 B

run "defaults" {
command = plan
assert {
condition = output.input == "Hello, world!"
error_message = "bad string value"
}
}
run "overrides" {
variables {
input = "Hello, universe!"
}
assert {
condition = output.input == "Hello, universe!"
error_message = "bad string value"
}
}