summaryrefslogtreecommitdiff
path: root/test/tests/link-environment-variable-expansion-source-extended.bash
blob: 73f6b0cd3a07edc5468505baa8dd30f1c7f58bc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
test_description='link expands environment variables in extended config syntax'
. '../test-lib.bash'

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

test_expect_success 'run' '
export APPLE="h" &&
run_dotbot <<EOF
- link:
    ~/.i:
      path: \$APPLE
      relink: true
EOF
'

test_expect_success 'test' '
grep "grape" ~/.i
'