summaryrefslogtreecommitdiff
path: root/t/chainlint/loop-in-if.test
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/loop-in-if.test')
-rw-r--r--t/chainlint/loop-in-if.test17
1 files changed, 17 insertions, 0 deletions
diff --git a/t/chainlint/loop-in-if.test b/t/chainlint/loop-in-if.test
new file mode 100644
index 0000000000..b0d0d393cf
--- /dev/null
+++ b/t/chainlint/loop-in-if.test
@@ -0,0 +1,17 @@
+test_expect_success 'loop-in-if' '
+(
+ if true
+ then
+ while true
+ do
+# LINT: missing "&&" on "echo"
+ echo "pop"
+ echo "glup"
+# LINT: missing "&&" on "done"
+ done
+ foo
+# LINT: missing "&&" on "fi"
+ fi
+ bar
+)
+'