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.
19 lines
321 B
19 lines
321 B
|
9 years ago
|
#!/bin/bash
|
||
|
8 months ago
|
|
||
|
|
if ! command -v bats >/dev/null 2>&1; then
|
||
|
8 months ago
|
cat <<EOF >&2
|
||
|
8 months ago
|
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
|
||
|
8 months ago
|
exit 1
|
||
|
8 months ago
|
fi
|
||
|
|
|
||
|
9 years ago
|
$(which bats) tests/
|