summaryrefslogtreecommitdiff
path: root/test/rcdn-hooks.t
diff options
context:
space:
mode:
Diffstat (limited to 'test/rcdn-hooks.t')
-rw-r--r--test/rcdn-hooks.t19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/rcdn-hooks.t b/test/rcdn-hooks.t
new file mode 100644
index 0000000..1edde40
--- /dev/null
+++ b/test/rcdn-hooks.t
@@ -0,0 +1,19 @@
+ $ . "$TESTDIR/helper.sh"
+
+Pre-down and post-down hooks should run by default
+
+ $ mkdir -p .dotfiles/hooks
+ > touch .dotfiles/hooks/pre-down .dotfiles/hooks/post-down
+ > chmod +x .dotfiles/hooks/pre-down .dotfiles/hooks/post-down
+
+ $ echo 'echo "example" > /tmp/test' > .dotfiles/hooks/pre-down
+ > echo 'cat /tmp/test; rm /tmp/test' > .dotfiles/hooks/post-down
+
+ $ rcdn
+ example
+
+Ensure that hooks run when output of lsrc is non-empty
+ $ touch .dotfiles/testrc
+ > rcup
+ > rcdn
+ example