# -*- Mode: Perl; -*- #!/usr/bin/perl -w use CGI qw(:no_debug); use CGI::Ex; use Test; BEGIN { plan tests => 2 } local $/; my $html = qq{}; my $q = new CGI; $q->param( foo => 'bar' ); { my $fif = new CGI::Ex; my $output = $fif->fill( scalarref => \$html, fobject => $q, fill_password => 0, ); ok($output !~ /value="bar"/); } { my $fif = new CGI::Ex; my $output = $fif->fill( scalarref => \$html, fobject => $q, # fill_password => 1, ); ok($output =~ /value="bar"/); }