At 1:01 PM -0400 10/4/03, Dominic Letarte wrote:
on the page : http://qa.perl.org/phalanx/kwalitee.html
ok( unlink $filename, "Remove $filename" );
should be written:
ok( unlink( $filename), "Remove $filename" ); unless you want Perl
to take "Remove $filename" as an arg for unlink and not for o
on the page : http://qa.perl.org/phalanx/kwalitee.html
ok( unlink $filename, "Remove $filename" );
should be written:
ok( unlink( $filename), "Remove $filename" );
unless you want Perl to take "Remove $filename" as an arg for unlink and
not for ok.
Dominic