blob: f8b8072438766b347ee400f9d3e38537d1a3b541 [file] [log] [blame]
run "first" {
variables {
input = 2
}
assert {
condition = output.output == null
error_message = "output should have been null"
}
}
run "second" {
variables {
input = 8
}
assert {
condition = output.output == 8
error_message = "output should have been 8"
}
}