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
295 B
18 lines
295 B
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
|
|
'
|
|
|