On Thu, Mar 28, 2002 at 10:13:45AM +0800, Stas Bekman wrote: > > > Failures: > > > > l1 MANIFEST errors: > > did not declare lib/Pod/t/htmlescp.html > > did not declare lib/Pod/t/htmlview.html > ... > > did not declare t/pod2htmd.x~~ > > did not declare t/pod2htmi.x~~ > > These are leftovers from the Pod::Html testing, here is the cleanup fix.
Thanks, applied. > --- lib/Pod/t/pod2html-lib.pl.orig Thu Mar 28 10:02:08 2002 > +++ lib/Pod/t/pod2html-lib.pl Thu Mar 28 10:04:05 2002 > @@ -33,9 +33,13 @@ > open my $in, $outfile or die "cannot open $outfile: $!"; > my $result = <$in>; > close $in; > + 1 while unlink $outfile; > > is($expect, $result, $testname); > > + # pod2html creates these > + 1 while unlink "pod2htmd.x~~"; > + 1 while unlink "pod2htmi.x~~"; > } > > 1; > > > __________________________________________________________________ > Stas Bekman JAm_pH ------> Just Another mod_perl Hacker > http://stason.org/ mod_perl Guide ---> http://perl.apache.org > mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com > http://modperlbook.org http://apache.org http://ticketmaster.com -- $jhi++; # http://www.iki.fi/jhi/ # There is this special biologist word we use for 'stable'. # It is 'dead'. -- Jack Cohen
