1
0
Fork 0
mirror of synced 2024-06-29 04:01:09 -04:00
dotbot/test/tests/shell-quiet.bash
Anish Athalye 5d34d005e8 Fix test
2022-11-17 13:26:32 -05:00

31 lines
664 B
Bash

test_description='shell command can be suppressed in output'
. '../test-lib.bash'
# when not quiet, expect to see command that was run
test_expect_success 'run' '
(run_dotbot | grep "echo banana") <<EOF
- shell:
- command: echo banana
description: echoing a thing...
EOF
'
# when quiet, expect command to be suppressed
test_expect_success 'run 2' '
(run_dotbot | (! grep "echo banana")) <<EOF
- shell:
- command: echo banana
description: echoing a thing...
quiet: true
EOF
'
# when no description, expect no output
test_expect_success 'run 3' '
(run_dotbot | (! grep "echo banana")) <<EOF
- shell:
- command: echo banana
quiet: true
EOF
'