mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
22 lines
303 B
HCL
22 lines
303 B
HCL
|
|
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"
|
|
}
|
|
}
|