# -*- Mode: Perl; -*- use strict; $^W = 1; print "1..2\n"; use CGI::Ex; print "ok 1\n"; my $hidden_form_in = qq{ }; my %fdat = (foo => 'bar1a'); my $fif = new CGI::Ex; my $output = $fif->fill(scalarref => \$hidden_form_in, fdat => \%fdat); if ($output =~ m/^\s*$/){ print "ok 2\n"; } else { print "Got unexpected out for hidden form:\n$output\n"; print "not ok 2\n"; }