# -*- Mode: Perl; -*- use strict; $^W = 1; print "1..2\n"; use CGI::Ex; use CGI; print "ok 1\n"; my $hidden_form_in = qq{ }; my %fdat = (foo1 => 'bar1', foo2 => 'bar2'); my $q1 = new CGI( { foo1 => 'bar1' }); my $q2 = new CGI( { foo2 => 'bar2' }); my $fif = new CGI::Ex; my $output = $fif->fill(scalarref => \$hidden_form_in, fobject => [$q1, $q2]); 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"; }