From 924f3eb5da74884d95f437c89f904068f362363f Mon Sep 17 00:00:00 2001 From: Daniel Nichter Date: Tue, 12 Feb 2013 13:18:12 -0700 Subject: [PATCH] Add two tests with literal commas. --- t/lib/Quoter.t | 2 ++ 1 file changed, 2 insertions(+) diff --git a/t/lib/Quoter.t b/t/lib/Quoter.t index 8f41a44a..c71c9e0f 100644 --- a/t/lib/Quoter.t +++ b/t/lib/Quoter.t @@ -139,6 +139,8 @@ my @latin1_serialize_tests = ( [ 'a' ], [ 'a', 'b', ], [ 'a,', 'b', ], # trailing comma + [ ',a', 'b', ], # leading comma + [ 'a', ',b' ], [ 0 ], [ 0, 0 ], [ 1, 2 ],