mirror of
https://github.com/nmattia/snack.git
synced 2024-12-11 11:04:03 +03:00
12 lines
172 B
Bash
Executable File
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
|