aboutsummaryrefslogtreecommitdiff
path: root/test/help.bats
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-01-27 12:58:25 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2013-01-27 12:58:25 +0100
commit11c930f71db58201994265b71a8f76187f1dbda1 (patch)
treeb0f90a4d631b946e4cb3d3755e9da1e3198aee71 /test/help.bats
parent6076c500405b7759845496dce6d3b9e1dc619cca (diff)
downloadapp.sh-11c930f71db58201994265b71a8f76187f1dbda1.tar.gz
app.sh-11c930f71db58201994265b71a8f76187f1dbda1.tar.bz2
app.sh-11c930f71db58201994265b71a8f76187f1dbda1.tar.xz
app.sh-11c930f71db58201994265b71a8f76187f1dbda1.zip
o Adding a common header to all scripts.
o Disabling un-used tests and apps for now.
Diffstat (limited to 'test/help.bats')
-rwxr-xr-xtest/help.bats17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/help.bats b/test/help.bats
deleted file mode 100755
index eba4eeb..0000000
--- a/test/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 ]
-}