9 BEGIN { plan tests => 2 }
12 my $html = qq{<input type="password" name="foo">};
14 $q->param( foo => 'bar' );
17 my $fif = new CGI::Ex;
18 my $output = $fif->fill(
24 ok($output !~ /value="bar"/);
29 my $fif = new CGI::Ex;
30 my $output = $fif->fill(
36 ok($output =~ /value="bar"/);