summaryrefslogtreecommitdiff
path: root/test/tests/shell-override-default.bash
blob: 8ca6264bf572236977e4b2a25a8619524fa3be21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
test_description='shell command can override default'
. '../test-lib.bash'

test_expect_success 'run' '
(run_dotbot | (! grep "^apple")) <<EOF
- defaults:
    shell:
      stdout: true
- shell:
  -
    command: echo apple
    stdout: false
EOF
'