1
0
Fork 0
mirror of synced 2024-05-26 12:01:14 -04:00
dotbot/test/tests/link-relink-leaves-file.bash
2015-05-05 20:11:46 -04:00

21 lines
309 B
Bash

test_description='relink does not overwrite file'
. '../test-lib.bash'
test_expect_success 'setup' '
echo "apple" > ${DOTFILES}/f &&
echo "grape" > ~/.f
'
test_expect_failure 'run' '
run_dotbot <<EOF
- link:
~/.f:
path: f
relink: true
EOF
'
test_expect_success 'test' '
grep "grape" ~/.f
'