This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
The cleanup code in lib/Pod/t/eol.t needs updating to track Pod::Html changes.
authorNicholas Clark <nick@ccl4.org>
Tue, 7 Feb 2012 14:46:03 +0000 (15:46 +0100)
committerNicholas Clark <nick@ccl4.org>
Wed, 8 Feb 2012 16:59:32 +0000 (17:59 +0100)
eol.t gained code to clean up temporary files it generated as part of commit
0ec158f4b0db050a in 2002. The temporary file names used by Pod::Html were
changed by commit 33869856bc668ad8 in 2003, but eol.t had never been updated.

lib/Pod/t/eol.t

index 987c150..2fc376d 100644 (file)
@@ -90,6 +90,5 @@ ok($cksum2 == $cksum3, "LF vs CRLF");
 close IN;
 
 END {
-  1 while unlink("$$.pod", "$$.in", "$$.o1", "$$.o2", "$$.o3",
-                 "pod2htmd.x~~", "pod2htmi.x~~");
+  1 while unlink("$$.pod", "$$.in", "$$.o1", "$$.o2", "$$.o3", "pod2htmd.tmp");
 }