diff options
Diffstat (limited to 't/chainlint/here-doc.expect')
-rw-r--r-- | t/chainlint/here-doc.expect | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/t/chainlint/here-doc.expect b/t/chainlint/here-doc.expect new file mode 100644 index 0000000000..2c382dd8eb --- /dev/null +++ b/t/chainlint/here-doc.expect @@ -0,0 +1,25 @@ +2 boodle wobba \ +3 gorgo snoot \ +4 wafta snurb <<EOF && +5 quoth the raven, +6 nevermore... +7 EOF +8 +9 cat <<-Arbitrary_Tag_42 >foo && +10 snoz +11 boz +12 woz +13 Arbitrary_Tag_42 +14 +15 cat <<"zump" >boo && +16 snoz +17 boz +18 woz +19 zump +20 +21 horticulture <<\EOF +22 gomez +23 morticia +24 wednesday +25 pugsly +26 EOF |