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.
19 lines
316 B
19 lines
316 B
test_description='clean deletes links to missing files'
|
|
. '../test-lib.bash'
|
|
|
|
test_expect_success 'setup' '
|
|
touch ${DOTFILES}/f &&
|
|
ln -s ${DOTFILES}/f ~/.f &&
|
|
ln -s ${DOTFILES}/g ~/.g
|
|
'
|
|
|
|
test_expect_success 'run' '
|
|
run_dotbot <<EOF
|
|
- clean: ["~"]
|
|
EOF
|
|
'
|
|
|
|
test_expect_success 'test' '
|
|
test -f ~/.f &&
|
|
! test -h ~/.g
|
|
'
|
|
|