13 lines
200 B
Bash
Executable File
13 lines
200 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# script/test: run the test suite.
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)"
|
|
|
|
main() {
|
|
cd "$ROOT"
|
|
echo "No tests defined."
|
|
}
|
|
|
|
main "$@"
|