diff options
Diffstat (limited to 'test/01-help.bats')
-rwxr-xr-x | test/01-help.bats | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/01-help.bats b/test/01-help.bats deleted file mode 100755 index 8bd4fd7..0000000 --- a/test/01-help.bats +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bats -# vim: set filetype=sh : - -load utils - -@test "./app" { - app; echo_lines - [ $status -eq $exit_usage_wrong ] - [ $(expr "${lines[0]}" : "usage: ./app .*") -ne 0 ] -} - -@test "./app foo" { - app foo; echo_lines - [ $status -eq $exit_usage_wrong ] - [ "${lines[0]}" = "Error: No such method group: foo" ] - [ $(expr "${lines[1]}" : "usage: ./app .*") -ne 0 ] -} |