diff options
Diffstat (limited to 't/chainlint/complex-if-in-cuddled-loop.expect')
-rw-r--r-- | t/chainlint/complex-if-in-cuddled-loop.expect | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/chainlint/complex-if-in-cuddled-loop.expect b/t/chainlint/complex-if-in-cuddled-loop.expect new file mode 100644 index 0000000..dac2d0f --- /dev/null +++ b/t/chainlint/complex-if-in-cuddled-loop.expect @@ -0,0 +1,9 @@ +(for i in a b c; do + if test "$(echo $(waffle bat))" = "eleventeen" && + test "$x" = "$y"; then + : + else + echo >file + fi ?!LOOP?! + done) && +test ! -f file |