10 lines
112 B
Bash
10 lines
112 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
main() {
|
||
|
cd "$(dirname "$0")/../.."
|
||
|
bats ./test/scripts
|
||
|
}
|
||
|
|
||
|
main "$@"
|