You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
317 B
18 lines
317 B
#!/bin/bash |
|
|
|
if ! command -v bats >/dev/null 2>&1; then |
|
cat <<EOF >&2 |
|
Error: The 'bats' testing framework is required but was not found. |
|
Please install it and try again: |
|
|
|
# Debian/Ubuntu |
|
sudo apt-get update && sudo apt-get install bats |
|
|
|
# Fedora |
|
sudo dnf install bats |
|
|
|
EOF |
|
exit 1 |
|
fi |
|
|
|
$(which bats) tests/
|
|
|