added explicit test for comma processing

This commit is contained in:
Colin Kuskie 2006-11-29 05:08:14 +00:00
parent 03b8f4e4d4
commit 957642e1c6

View file

@ -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;