You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
294 B
18 lines
294 B
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
|
|
'
|
|
|