blob: c4298bfe8acdc625fddc0f1dcf8f8638e28fd1c4 [file] [log] [blame]
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"
}
}