1
0
Fork 0
mirror of synced 2024-06-02 15:31:09 -04:00
dotbot/test/tests/link-environment-variable-unset.bash

19 lines
294 B
Bash
Raw Permalink Normal View History

test_description='link leaves unset environment variables'
. '../test-lib.bash'
test_expect_success 'setup' '
echo "apple" > ${DOTFILES}/\$ORANGE
'
test_expect_success 'run' '
unset ORANGE &&
run_dotbot <<EOF
- link:
~/.f: \$ORANGE
EOF
'
test_expect_success 'test' '
grep "apple" ~/.f
'