From 957642e1c6a5f64cf5e6190c1584322ccedba5e3 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Wed, 29 Nov 2006 05:08:14 +0000 Subject: [PATCH] added explicit test for comma processing --- t/Macro/URLEncode.t | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/t/Macro/URLEncode.t b/t/Macro/URLEncode.t index 5cd6bf55a..9c5160f24 100644 --- a/t/Macro/URLEncode.t +++ b/t/Macro/URLEncode.t @@ -42,6 +42,11 @@ my @testSets = ( output => q!%26!, comment => q|ampersand|, }, + { + input => q!this, that and the other!, + output => q!this%2C%20that%20and%20the%20other!, + comment => q|inline comma|, + }, ); my $numTests = scalar @testSets;