X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-CGI-Ex;a=blobdiff_plain;f=t%2F2_fill_01_form.t;h=806b75493729193fa59b0a5dfefe45784ea2ac49;hp=e6309e5a62d0a7e0468a19a6e94503180ede16e3;hb=4eee158dce82376f2f37de29d91c53f60a24aebe;hpb=85070b46d0a93ddbeef07341421adb8389a55418 diff --git a/t/2_fill_01_form.t b/t/2_fill_01_form.t index e6309e5..806b754 100644 --- a/t/2_fill_01_form.t +++ b/t/2_fill_01_form.t @@ -1,14 +1,15 @@ # -*- Mode: Perl; -*- -use strict; +=head1 NAME -$^W = 1; +2_fill_01_form.t - Test CGI::Ex::Fill's ability to fill hidden fields -print "1..2\n"; +=cut -use CGI::Ex; +use strict; +use Test::More tests => 2; -print "ok 1\n"; +use_ok('CGI::Ex::Fill'); my $hidden_form_in = ' @@ -19,12 +20,7 @@ my %fdat = (foo1 => 'bar1', foo2 => '"bar2"'); -my $fif = new CGI::Ex; -my $output = $fif->fill(scalarref => \$hidden_form_in, - fdat => \%fdat); -if ($output =~ m/^\s*\s*\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*\s*\s*$/i, + "Basic case insensitive match worked ($output)");