You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
378 B
22 lines
378 B
test_description='shell command stdout works in compact form'
|
|
. '../test-lib.bash'
|
|
|
|
test_expect_success 'run' '
|
|
(run_dotbot | grep "^apple") <<EOF
|
|
- defaults:
|
|
shell:
|
|
stdout: true
|
|
- shell:
|
|
- echo apple
|
|
EOF
|
|
'
|
|
|
|
test_expect_success 'run 2' '
|
|
(run_dotbot | grep "^apple") <<EOF
|
|
- defaults:
|
|
shell:
|
|
stdout: true
|
|
- shell:
|
|
- [echo apple, "echoing message"]
|
|
EOF
|
|
'
|
|
|