aboutsummaryrefslogtreecommitdiff
path: root/test/01-help.bats
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2012-10-14 09:08:56 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2012-10-14 09:08:56 +0200
commita3db63fa62abee81e866fc2397c9302486a09cbb (patch)
treeba279b6184a5dca3a3aa4920e6d191f034ccd624 /test/01-help.bats
parente9a22d5165c2dda5a0e10506977081222549a8eb (diff)
downloadapp.sh-a3db63fa62abee81e866fc2397c9302486a09cbb.tar.gz
app.sh-a3db63fa62abee81e866fc2397c9302486a09cbb.tar.bz2
app.sh-a3db63fa62abee81e866fc2397c9302486a09cbb.tar.xz
app.sh-a3db63fa62abee81e866fc2397c9302486a09cbb.zip
o More tests.
Diffstat (limited to 'test/01-help.bats')
-rwxr-xr-xtest/01-help.bats17
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 ]
-}