summaryrefslogtreecommitdiff
path: root/test/tests/defaults.bash
blob: 2affc9b48e4c41a1bc52f6d180a06f40674ae0fe (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
test_description='defaults setting works'
. '../test-lib.bash'

test_expect_success 'setup' '
echo "apple" > ${DOTFILES}/f &&
echo "grape" > ~/f &&
ln -s ~/f ~/.f &&
ln -s /nowhere ~/.g
'

test_expect_failure 'run-fail' '
run_dotbot <<EOF
- link:
    ~/.f: f
EOF
'

test_expect_failure 'test-fail' '
grep "apple" ~/.f
'

test_expect_success 'run' '
run_dotbot <<EOF
- defaults:
    link:
      relink: true

- link:
    ~/.f: f
EOF
'

test_expect_success 'test' '
grep "apple" ~/.f
'

test_expect_success 'run-fail 2' '
run_dotbot <<EOF
- clean: ["~"]
EOF
'

test_expect_failure 'test-fail 2' '
! test -h ~/.g
'

test_expect_success 'run 2' '
run_dotbot <<EOF
- defaults:
    clean:
      force: true

- clean: ["~"]
EOF
'

test_expect_success 'test 2' '
! test -h ~/.g
'