mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
20 lines
291 B
HCL
20 lines
291 B
HCL
variables {
|
|
input = file("../../tests/samples/01.txt")
|
|
}
|
|
|
|
run "run" {
|
|
|
|
command = plan
|
|
|
|
assert {
|
|
condition = output.part1 == 11
|
|
error_message = "Part1 output is wrong"
|
|
}
|
|
|
|
assert {
|
|
condition = output.part2 == 31
|
|
error_message = "Part2 output is wrong"
|
|
}
|
|
|
|
}
|