From 09755150f9c559cdff5200b930536dcc63b12a12 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 14 Sep 2020 02:03:34 +0300 Subject: [PATCH] more test cases... still an uncaught bug present Signed-off-by: Alex A. Naanou --- test.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/test.js b/test.js index 5d6bd91..b772b2d 100755 --- a/test.js +++ b/test.js @@ -724,11 +724,30 @@ var cases = test.Cases({ b c`, all: `a\n b\nc` }, + { input: `a + b + b + b + c`, + all: `a\n b\n b\n b\nc` }, + { input: `a + b + b + b + c`, + all: `a\n b\n b\n b\nc` }, { input: ` a b c`, all: `a\n b\nc` }, + { input: `a + b + c + d`, + text: `a\n b\nc\nd`, + // XXX not sure about this... + doc: `a\n b\n c\n d` }, ], text: function(assert){ this.text_cases