more testing...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2020-10-18 02:48:42 +03:00
parent c2d2afc398
commit 5a4b999382

View File

@ -712,6 +712,12 @@ text.setups({
'leading whitespace': data({ 'leading whitespace': data({
input: '\n\t\tabc', input: '\n\t\tabc',
all: 'abc'}), all: 'abc'}),
'trailing whitespace': data({
input: 'abc\n\t \n',
all: 'abc'}),
'leading and trailing whitespace': data({
input: '\n\t \tabc\n\t \n',
all: 'abc'}),
// NOTE: there is no way to know what is the indent of 'a' // NOTE: there is no way to know what is the indent of 'a'
// relative to the rest of the text... // relative to the rest of the text...