diff options
Diffstat (limited to 't/chainlint/block.test')
-rw-r--r-- | t/chainlint/block.test | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/t/chainlint/block.test b/t/chainlint/block.test new file mode 100644 index 0000000000..a1b6b4dd32 --- /dev/null +++ b/t/chainlint/block.test @@ -0,0 +1,29 @@ +test_expect_success 'block' ' +( +# LINT: missing "&&" after first "echo" + foo && + { + echo a + echo b + } && + bar && +# LINT: missing "&&" at closing "}" + { + echo c + } + baz +) && + +# LINT: ";" not allowed in place of "&&" +{ + echo a; echo b +} && +{ echo a; echo b; } && + +# LINT: "}" inside string not mistaken as end of block +{ + echo "${var}9" && + echo "done" +} && +finis +' |