blob: b790a0b8ab1b613b7bd81079eeb1fceecc3a85af [file] [log] [blame] [edit]
run "defaults" {
command = plan
assert {
condition = tfcoremock_simple_resource.resource.string == "Hello, world!"
error_message = "bad string value"
}
}
run "overrides" {
variables {
input = "Hello, universe!"
}
assert {
condition = tfcoremock_simple_resource.resource.string == "Hello, universe!"
error_message = "bad string value"
}
}