From 11c930f71db58201994265b71a8f76187f1dbda1 Mon Sep 17 00:00:00 2001 From: Trygve Laugstøl Date: Sun, 27 Jan 2013 12:58:25 +0100 Subject: o Adding a common header to all scripts. o Disabling un-used tests and apps for now. --- test/X-help.bats | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 test/X-help.bats (limited to 'test/X-help.bats') diff --git a/test/X-help.bats b/test/X-help.bats new file mode 100755 index 0000000..eba4eeb --- /dev/null +++ b/test/X-help.bats @@ -0,0 +1,17 @@ +#!/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 ] +} -- cgit v1.2.3