The eighth batch
[alt-git.git] / t / chainlint / inline-comment.test
blob4fbbf1058a0ec2d69af1a53d3ce3d053040e518e
1 test_expect_success 'inline-comment' '
3 # LINT: swallow inline comment (leaving command intact)
4         foobar && # comment 1
5 # LINT: mispositioned "&&" (correctly) swallowed with comment
6         barfoo # wrong position for &&
7 # LINT: "#" in string not misinterpreted as comment
8         flibble "not a # comment"
9 ) &&
11 # LINT: "#" in string in cuddled subshell not misinterpreted as comment
12 (cd foo &&
13         flibble "not a # comment")