summaryrefslogtreecommitdiff
path: root/test/tests/except-multi.bash
blob: 4193e66b23f5ee42a1f6db17613c53666cfa57d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
'