aboutsummaryrefslogtreecommitdiff
path: root/test/X-help.bats
diff options
context:
space:
mode:
Diffstat (limited to 'test/X-help.bats')
-rwxr-xr-xtest/X-help.bats17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/X-help.bats b/test/X-help.bats
deleted file mode 100755
index eba4eeb..0000000
--- a/test/X-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 ]
-}