summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAnish Athalye <me@anishathalye.com>2017-06-27 21:20:37 -0700
committerAnish Athalye <me@anishathalye.com>2017-06-27 21:27:50 -0700
commitf1e829725506813276c0dff21f6e6bfff9873444 (patch)
treedc0d5ae442d484177d5467c5a132793cf4a2cc21 /test
parent0b01d56d81c33f8b665487f5a64f2d69b2a645f0 (diff)
Fix bug with shell defaults
Diffstat (limited to 'test')
-rw-r--r--test/tests/shell-compact-stdout.bash22
-rw-r--r--test/tests/shell-override-default.bash14
2 files changed, 36 insertions, 0 deletions
diff --git a/test/tests/shell-compact-stdout.bash b/test/tests/shell-compact-stdout.bash
new file mode 100644
index 0000000..dc55d52
--- /dev/null
+++ b/test/tests/shell-compact-stdout.bash
@@ -0,0 +1,22 @@
+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
+'
diff --git a/test/tests/shell-override-default.bash b/test/tests/shell-override-default.bash
new file mode 100644
index 0000000..8ca6264
--- /dev/null
+++ b/test/tests/shell-override-default.bash
@@ -0,0 +1,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
+'