aboutsummaryrefslogtreecommitdiff
path: root/test/02-app-help.bats
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2012-10-14 08:55:36 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2012-10-14 08:55:36 +0200
commite9a22d5165c2dda5a0e10506977081222549a8eb (patch)
tree995e471a537719ecd950dfdccb8043836ab406ce /test/02-app-help.bats
parenta7a62352c46b5d2b37baaa09f8145b1171ca79fb (diff)
downloadapp.sh-e9a22d5165c2dda5a0e10506977081222549a8eb.tar.gz
app.sh-e9a22d5165c2dda5a0e10506977081222549a8eb.tar.bz2
app.sh-e9a22d5165c2dda5a0e10506977081222549a8eb.tar.xz
app.sh-e9a22d5165c2dda5a0e10506977081222549a8eb.zip
o Making sure ./app can be symlinked to an installation.
o More tests.
Diffstat (limited to 'test/02-app-help.bats')
-rwxr-xr-xtest/02-app-help.bats38
1 files changed, 38 insertions, 0 deletions
diff --git a/test/02-app-help.bats b/test/02-app-help.bats
new file mode 100755
index 0000000..460762f
--- /dev/null
+++ b/test/02-app-help.bats
@@ -0,0 +1,38 @@
+#!/usr/bin/env bats
+# vim: set filetype=sh :
+
+load utils
+
+@test "./app app" {
+ app app; echo_lines
+ [ $status -eq $exit_usage_wrong ]
+ [ $(expr "${lines[0]}" : "usage: ./app app .*") -ne 0 ]
+ [ ${#lines[*]} == 6 ]
+}
+
+@test "./app app install" {
+ app app install; echo_lines
+ [ $status -eq $exit_usage ]
+ [ $(expr "${lines[0]}" : "usage: install .*") -ne 0 ]
+ [ ${#lines[*]} == 6 ]
+}
+
+@test "./app app list" {
+ app app list; echo_lines
+ [ $status -eq 0 ]
+ [ ${#lines[*]} == 0 ]
+}
+
+@test "./app app list-versions" {
+ app app list-versions; echo_lines
+ [ $status -eq $exit_usage ]
+ [ $(expr "${lines[0]}" : "usage: list-versions .*") -ne 0 ]
+ [ ${#lines[*]} == 2 ]
+}
+
+@test "./app app set-current" {
+ app app "set-current"; echo_lines
+ [ $status -eq $exit_usage ]
+ [ $(expr "${lines[0]}" : "usage: set-current .*") -ne 0 ]
+ [ ${#lines[*]} == 1 ]
+}