aboutsummaryrefslogtreecommitdiff
path: root/tests/008-help_option.sh
blob: 494aeac8b14fa3a29fffc184b720a8c7b62b4b4f (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

source ./assert.sh

PROGRAM_EXEC="$1"

assert "Usage" "" 0 $PROGRAM_EXEC help
assert "Usage" "" 0 $PROGRAM_EXEC backup -h
assert "Usage" "" 0 $PROGRAM_EXEC restore -h

exit 0