X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-CGI-Ex;a=blobdiff_plain;f=t%2F2_fill_12_mult.t;h=620b1b76215aa0013ef417306b3fe2ecaabb3943;hp=91755f5665de96ee81e45a94f5226ff432b7c21a;hb=4eee158dce82376f2f37de29d91c53f60a24aebe;hpb=85070b46d0a93ddbeef07341421adb8389a55418 diff --git a/t/2_fill_12_mult.t b/t/2_fill_12_mult.t index 91755f5..620b1b7 100644 --- a/t/2_fill_12_mult.t +++ b/t/2_fill_12_mult.t @@ -1,37 +1,37 @@ # -*- Mode: Perl; -*- -use strict; +=head1 NAME -$^W = 1; +2_fill_12_mult.t - Test CGI::Ex::Fill's ability to fill multiple instances of the same field name -print "1..3\n"; +=cut -use CGI::Ex; +use strict; +use Test::More tests => 4; -print "ok 1\n"; +use_ok('CGI::Ex::Fill'); my $hidden_form_in = qq{ }; my %fdat = (foo1 => ['bar1','bar2']); -my $fif = new CGI::Ex; -my $output = $fif->fill(scalarref => \$hidden_form_in, - fdat => \%fdat); -if ($output =~ m/^\s*$/i){ - print "ok 2\n"; -} else { - print "Got unexpected out for $hidden_form_in:\n$output\n"; - print "not ok 2\n"; -} +my $output = CGI::Ex::Fill::form_fill($hidden_form_in, + \%fdat); +ok($output =~ m/^\s*$/i, + "Should match ($output)"); + %fdat = (foo1 => ['bar1']); -$output = $fif->fill(scalarref => \$hidden_form_in, - fdat => \%fdat); -if ($output =~ m/^\s*$/i){ - print "ok 3\n"; -} else { - print "Got unexpected out for $hidden_form_in:\n$output\n"; - print "not ok 3\n"; -} +$output = CGI::Ex::Fill::form_fill($hidden_form_in, + \%fdat); +ok($output =~ m/^\s*$/i, + "Should match ($output)"); + +%fdat = (foo1 => 'bar1'); + +$output = CGI::Ex::Fill::form_fill($hidden_form_in, + \%fdat); +ok($output =~ m/^\s*$/i, + "Should match ($output)");