test_description='--except' . '../test-lib.bash' test_expect_success 'setup' ' echo "apple" > ${DOTFILES}/x ' test_expect_success 'run' ' run_dotbot --except link < ~/y - link: ~/x: x EOF ' test_expect_success 'test' ' grep "pear" ~/y && ! test -f ~/x ' test_expect_success 'run 2' ' run_dotbot --except shell < ~/z - link: ~/x: x EOF ' test_expect_success 'test' ' grep "apple" ~/x && ! test -f ~/z '