More quoting tests

This commit is contained in:
Juerd Waalboer 2023-12-28 14:06:10 +01:00
parent 7cfdc2b20d
commit bb11d94bd8

View file

@ -34,13 +34,23 @@ are '"foo"', [qw/foo/];
are "foo bar", [qw/foo bar/];
are "foo bar baz", [qw/foo bar baz/];
are "'foo' 'bar' 'baz'", [qw/foo bar baz/];
are "'foo' 'bar' \"baz\"", [qw/foo bar baz/];
are "foo;bar", ['foo', "\0SEPARATOR", 'bar'];
are "foo ;bar", ['foo', "\0SEPARATOR", 'bar'];
are "foo; bar", ['foo', "\0SEPARATOR", 'bar'];
are "foo ; bar", ['foo', "\0SEPARATOR", 'bar'];
are "'foo';bar", ['foo', "\0SEPARATOR", 'bar'];
are "'foo' ;bar", ['foo', "\0SEPARATOR", 'bar'];
are "'foo'; bar", ['foo', "\0SEPARATOR", 'bar'];
are "'foo' ; bar", ['foo', "\0SEPARATOR", 'bar'];
are "foo;'bar'", ['foo', "\0SEPARATOR", 'bar'];
are "foo ;'bar'", ['foo', "\0SEPARATOR", 'bar'];
are "foo; 'bar'", ['foo', "\0SEPARATOR", 'bar'];
are "foo ; 'bar'", ['foo', "\0SEPARATOR", 'bar'];
are "foo\\;bar", [qw/foo;bar/];
are "foo \\;bar", [qw/foo ;bar/];
are "foo\\; bar", [qw/foo; bar/];
@ -58,6 +68,7 @@ are 'foo\\\\\\\\bar', ["foo\\\\bar"];
are "abort", ["\0ABORT"];
are "'abort'", [qw/abort/];
are '"abort"', [qw/abort/];
are "\\", 0;
are "'foo", 0;