1
1
mirror of https://github.com/nmattia/snack.git synced 2024-10-26 12:38:49 +03:00
snack/tests/run-args/test
2019-01-21 22:26:16 +01:00

12 lines
172 B
Bash
Executable File

#!/usr/bin/env bash
# vim: ft=sh sw=2 et
set -euo pipefail
test() {
$SNACK build
$SNACK run -- hello 'this is' 'the answer' bye | diff golden -
}
SNACK="snack" test