1
0
Fork 0
mirror of synced 2024-06-01 15:01:10 -04:00
dotbot/test/tests/link-environment-variable-expansion-source.bash

19 lines
295 B
Bash
Raw Normal View History

test_description='link expands environment variables in source'
. '../test-lib.bash'
test_expect_success 'setup' '
echo "grape" > ${DOTFILES}/h
'
test_expect_success 'run' '
export APPLE="h" &&
run_dotbot <<EOF
- link:
~/.i: \$APPLE
EOF
'
test_expect_success 'test' '
grep "grape" ~/.i
'