1
0
Fork 0
mirror of synced 2024-05-26 12:01:14 -04:00
dotbot/test/tests/clean-outside-force.bash
2017-03-26 11:19:26 -04:00

19 lines
291 B
Bash

test_description='clean forced to remove files linking outside dotfiles directory'
. '../test-lib.bash'
test_expect_success 'setup' '
ln -s /nowhere ~/.g
'
test_expect_success 'run' '
run_dotbot <<EOF
- clean:
~/:
force: true
EOF
'
test_expect_success 'test' '
! test -h ~/.g
'