diff options
Diffstat (limited to 'spec/support')
-rwxr-xr-x | spec/support/hook_fail | 3 | ||||
-rwxr-xr-x | spec/support/hook_ok | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/spec/support/hook_fail b/spec/support/hook_fail new file mode 100755 index 0000000..4420796 --- /dev/null +++ b/spec/support/hook_fail @@ -0,0 +1,3 @@ +#!/bin/bash +#echo "fail: $0" +exit 1 diff --git a/spec/support/hook_ok b/spec/support/hook_ok new file mode 100755 index 0000000..eb1e3bc --- /dev/null +++ b/spec/support/hook_ok @@ -0,0 +1,3 @@ +#!/bin/bash +#echo "ok: $0" +exit 0 |