10 lines
173 B
Bash
Executable file
10 lines
173 B
Bash
Executable file
#!/usr/bin/env bats
|
|
|
|
setup() {
|
|
DIR="$( cd "$( dirname "$BATS_TEST_FILENAME" )" >/dev/null 2>&1 && pwd )"
|
|
PATH="$DIR:$PATH"
|
|
}
|
|
|
|
@test "can run" {
|
|
git-check-assertions
|
|
}
|