summaryrefslogtreecommitdiff
path: root/test/tests/link-environment-variable-expansion-target.bash
blob: 3a2e4ddefd407c9aa4f85c0ed592ce2d5624b3c2 (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
test_description='link expands environment variables in target'
. '../test-lib.bash'

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

test_expect_success 'run' '
export ORANGE=".config" &&
export BANANA="g" &&
unset PEAR &&
run_dotbot <<EOF
- link:
    ~/\${ORANGE}/\$BANANA:
      path: f
      create: true
    ~/\$PEAR: h
EOF
'

test_expect_success 'test' '
grep "apple" ~/.config/g &&
grep "grape" ~/\$PEAR
'