1
0
Fork 0
mirror of synced 2024-05-25 19:41:14 -04:00
dotbot/test/tests/link-relink-overwrite-symlink.bash
2015-05-05 20:11:46 -04:00

22 lines
321 B
Bash

test_description='relink overwrites symlink'
. '../test-lib.bash'
test_expect_success 'setup' '
echo "apple" > ${DOTFILES}/f &&
echo "grape" > ~/f &&
ln -s ~/f ~/.f
'
test_expect_success 'run' '
run_dotbot <<EOF
- link:
~/.f:
path: f
relink: true
EOF
'
test_expect_success 'test' '
grep "apple" ~/.f
'