git-check-assertions/test/git-check-assertions.bats

14 lines
279 B
Bash
Executable file

#!/usr/bin/env bats
setup() {
load 'test_helper/bats-support/load'
load 'test_helper/bats-assert/load'
DIR="$( cd "$( dirname "$BATS_TEST_FILENAME" )" >/dev/null 2>&1 && pwd )"
PATH="$DIR/../bin:$PATH"
}
@test "can run" {
run git-check-assertions
assert_success
}