summaryrefslogtreecommitdiff
path: root/test/tests/link-default-source.bash
blob: 60527d9e2aecdac3d83acfa4aa443b924359955c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
test_description='link uses destination if source is null'
. '../test-lib.bash'

test_expect_success 'setup' '
echo "apple" > ${DOTFILES}/f &&
echo "grape" > ${DOTFILES}/fd
'

test_expect_success 'run' '
run_dotbot <<EOF
- link:
    ~/f:
    ~/.f:
    ~/fd:
        force: false
    ~/.fd:
        force: false
EOF
'

test_expect_success 'test' '
grep "apple" ~/f &&
grep "apple" ~/.f &&
grep "grape" ~/fd &&
grep "grape" ~/.fd
'