summaryrefslogtreecommitdiff
path: root/test/tests/only.bash
blob: 522288142d8a93f0594f8baf28667743e5e93013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
test_description='--only'
. '../test-lib.bash'

test_expect_success 'setup' '
echo "apple" > ${DOTFILES}/x
'

test_expect_success 'run' '
run_dotbot --only shell <<EOF
- shell:
  - echo "pear" > ~/y
- link:
    ~/x: x
EOF
'

test_expect_success 'test' '
grep "pear" ~/y && ! test -f ~/x
'

test_expect_success 'run 2' '
run_dotbot --only link <<EOF
- shell:
  - echo "pear" > ~/z
- link:
    ~/x: x
'

test_expect_success 'test' '
grep "apple" ~/x && ! test -f ~/z
'