diff options
Diffstat (limited to 't/chainlint/not-heredoc.expect')
-rw-r--r-- | t/chainlint/not-heredoc.expect | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/t/chainlint/not-heredoc.expect b/t/chainlint/not-heredoc.expect new file mode 100644 index 0000000000..5d51705a7a --- /dev/null +++ b/t/chainlint/not-heredoc.expect @@ -0,0 +1,14 @@ +2 echo "<<<<<<< ours" && +3 echo ourside && +4 echo "=======" && +5 echo theirside && +6 echo ">>>>>>> theirs" && +7 +8 ( +9 echo "<<<<<<< ours" && +10 echo ourside && +11 echo "=======" && +12 echo theirside && +13 echo ">>>>>>> theirs" ?!LINT: missing '&&'?! +14 poodle +15 ) >merged |