7ffaa65482
Internal to Dotbot, we use the name "skip" instead of "except", because the latter is a keyword, and using a name like "except_" didn't seem as nice.
21 lines
432 B
Bash
21 lines
432 B
Bash
test_description='--except with multiple arguments'
|
|
. '../test-lib.bash'
|
|
|
|
test_expect_success 'setup' '
|
|
ln -s ${DOTFILES}/nonexistent ~/bad && touch ${DOTFILES}/y
|
|
'
|
|
|
|
test_expect_success 'run' '
|
|
run_dotbot --except clean shell <<EOF
|
|
- clean: ["~"]
|
|
- shell:
|
|
- echo "x" > ~/x
|
|
- link:
|
|
~/y: y
|
|
EOF
|
|
'
|
|
|
|
test_expect_success 'test' '
|
|
[ "$(readlink ~/bad | cut -d/ -f4-)" = "dotfiles/nonexistent" ] &&
|
|
! test -f ~/x && test -f ~/y
|
|
'
|