aboutsummaryrefslogtreecommitdiff
path: root/tests/004-missing_argument_for_option.sh
blob: 071ea07fd9b8eb85536434caf1b36baeda578ad7 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

source ./assert.sh

PROGRAM_EXEC="$1"

assert_error "missing argument for option '-b'" $PROGRAM_EXEC -b
assert_error "missing argument for option '-s'" $PROGRAM_EXEC -s

exit 0