summaryrefslogtreecommitdiff
path: root/t/chainlint/command-substitution.test
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/command-substitution.test')
-rw-r--r--t/chainlint/command-substitution.test11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/chainlint/command-substitution.test b/t/chainlint/command-substitution.test
new file mode 100644
index 0000000..3bbb002
--- /dev/null
+++ b/t/chainlint/command-substitution.test
@@ -0,0 +1,11 @@
+(
+ foo &&
+# LINT: closing ")" of $(...) not misinterpreted as subshell-closing ")"
+ bar=$(gobble) &&
+ baz
+) &&
+(
+# LINT: missing "&&" on $(...)
+ bar=$(gobble blocks)
+ baz
+)