aboutsummaryrefslogtreecommitdiff
path: root/tests/002-missing_arguments.sh
blob: 2ebbd55223f32cd0c7356c724fbd5d57edf9f5da (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

source ./assert.sh

PROGRAM_EXEC="$1"

assert "Usage" "missing input file" 1 $PROGRAM_EXEC create
assert "Usage" "missing diff file" 1 $PROGRAM_EXEC restore

exit 0