summaryrefslogtreecommitdiff
path: root/lib/Pod/t/pod2html-lib.pl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Pod/t/pod2html-lib.pl')
-rw-r--r--lib/Pod/t/pod2html-lib.pl5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Pod/t/pod2html-lib.pl b/lib/Pod/t/pod2html-lib.pl
index c3d96aeefb..3a83bd14d8 100644
--- a/lib/Pod/t/pod2html-lib.pl
+++ b/lib/Pod/t/pod2html-lib.pl
@@ -33,9 +33,12 @@ sub convert_n_test {
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;