aboutsummaryrefslogtreecommitdiff
path: root/tests/005-missing_argument_for_option.sh
blob: b519513d3fffcabddb458128851dc54087e397c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

source ./assert.sh

PROGRAM_EXEC="$1"

assert "Usage" "missing argument for option '-B'" 1 $PROGRAM_EXEC backup -B
assert "Usage" "missing argument for option '-S'" 1 $PROGRAM_EXEC backup -S

assert "Usage" "missing argument for option '-B'" 1 $PROGRAM_EXEC restore -B
assert "Usage" "missing argument for option '-S'" 1 $PROGRAM_EXEC restore -S

exit 0