summaryrefslogtreecommitdiff
path: root/test/tests/link-relink-overwrite-symlink.bash
blob: 5057e2711661256d567f07ec69bcb3815dae80e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
'