summaryrefslogtreecommitdiff
path: root/test/tests/link-environment-user-expansion-target.bash
blob: 9cb3424c6d8a78156ce221de230124b710ee807e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
test_description='link expands user in target'
. '../test-lib.bash'

test_expect_success 'setup' '
echo "apple" > ~/f
'

test_expect_success 'run' '
run_dotbot <<EOF
- link:
    ~/g: ~/f
EOF
'

test_expect_success 'test' '
grep "apple" ~/g
'