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.
21 lines
339 B
21 lines
339 B
test_description='force overwrites symlinked directory'
|
|
. '../test-lib.bash'
|
|
|
|
test_expect_success 'setup' '
|
|
mkdir ${DOTFILES}/dir ~/dir &&
|
|
touch ${DOTFILES}/dir/f &&
|
|
ln -s ~/ ~/.dir
|
|
'
|
|
|
|
test_expect_success 'run' '
|
|
run_dotbot <<EOF
|
|
- link:
|
|
~/.dir:
|
|
path: dir
|
|
force: true
|
|
EOF
|
|
'
|
|
|
|
test_expect_success 'test' '
|
|
test -f ~/.dir/f
|
|
'
|
|
|