1
0
mirror of https://github.com/sstephenson/bats.git synced 2024-09-29 12:38:26 +02:00
bats/test/bats.bats

22 lines
433 B
Plaintext
Raw Normal View History

2011-12-28 23:21:48 +01:00
#!/usr/bin/env bats
FIXTURE_ROOT="$BATS_TEST_DIRNAME/fixtures"
2011-12-29 00:12:17 +01:00
@test "no arguments prints usage instructions" {
2011-12-28 23:21:48 +01:00
run bats
[[ $status -eq 1 ]]
[[ $output =~ ^usage: ]]
}
2011-12-29 00:12:17 +01:00
@test "invalid filename prints an error" {
2011-12-28 23:21:48 +01:00
run bats nonexistent
[[ $status -eq 1 ]]
[[ $output =~ does\ not\ exist ]]
}
2011-12-29 00:12:17 +01:00
@test "empty test file runs zero tests" {
2011-12-28 23:21:48 +01:00
run bats "$FIXTURE_ROOT/empty.bats"
[[ $status -eq 0 ]]
[[ $output = "1..0" ]]
}