Ready to dogfood!

This commit is contained in:
vlad 2021-12-20 19:55:21 -08:00
parent f679a866f1
commit d0c783a421

13
go Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -euo pipefail
test() {
_help-line "Run all the tests" "$@"
exit=0
for test in test/test*; do
bash $test || exit=1
done
exit $exit
}
source ⚡️