summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/tests/link-if.bash19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/tests/link-if.bash b/test/tests/link-if.bash
index 9fe6429..1ea7709 100644
--- a/test/tests/link-if.bash
+++ b/test/tests/link-if.bash
@@ -30,3 +30,22 @@ grep "apple" ~/.f &&
grep "apple" ~/.h &&
! test -f ~/.i
'
+
+test_expect_success 'run 2' '
+run_dotbot <<EOF
+- defaults:
+ link:
+ if: "false"
+- link:
+ ~/.j:
+ path: f
+ if: "true"
+ ~/.k:
+ path: f
+EOF
+'
+
+test_expect_success 'test 2' '
+grep "apple" ~/.j &&
+! test -f ~/.k
+'