summaryrefslogtreecommitdiff
path: root/test/tests/plugin-disable-builtin.bash
blob: f469b0fbe48c469a4b0c8885f369d66655570dda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
test_description='can disable built-in plugins'
. '../test-lib.bash'

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

test_expect_failure 'run' '
run_dotbot --disable-built-in-plugins <<EOF
- link:
    ~/.f: f
EOF
'

test_expect_failure 'test' '
test -f ~/.f
'