2020-01-03 16:07:44 -05:00
|
|
|
test_description='linking canonicalizes path by default'
|
|
|
|
. '../test-lib.bash'
|
|
|
|
|
|
|
|
test_expect_success 'setup' '
|
|
|
|
echo "apple" > ${DOTFILES}/f &&
|
|
|
|
ln -s dotfiles dotfiles-symlink
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'run' '
|
|
|
|
cat > "${DOTFILES}/${INSTALL_CONF}" <<EOF
|
|
|
|
- link:
|
|
|
|
~/.f:
|
|
|
|
path: f
|
|
|
|
EOF
|
|
|
|
${DOTBOT_EXEC} -c dotfiles-symlink/${INSTALL_CONF}
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'test' '
|
2020-12-18 14:34:28 -05:00
|
|
|
[ "$(readlink ~/.f | cut -d/ -f5-)" = "dotfiles/f" ]
|
2020-01-03 16:07:44 -05:00
|
|
|
'
|