mirror of
1
0
Fork 0
This commit is contained in:
Anish Athalye 2018-11-19 20:38:29 -05:00
parent 7add866215
commit 1be9f7532b
1 changed files with 19 additions and 0 deletions

View File

@ -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
'