Subject: | Patch to fix all CPAN Tester fails |
All CPAN Testers tests fail. These patches allow the tests to pass.
The problem was that the MANIFEST file has a comment after the META.yml
file name, and that comment was being treated as another file.
Subject: | diff-grep.txt |
--- ../Dir-Iterate-0.01.orig/t/003_grepdir.t 2009-10-22 17:10:40.000000000 -0400
+++ t/003_grepdir.t 2015-11-03 12:52:47.518801000 -0500
@@ -49,6 +49,7 @@
while(<$fh>) {
next if /^#/;
+ s/\s+.+//;
chomp;
push @files, File::Spec->rel2abs($_);
}
@@ -56,4 +57,4 @@
close($fh) or die;
return @files;
-}
\ No newline at end of file
+}
Subject: | diff-map.txt |
--- ../Dir-Iterate-0.01.orig/t/002_mapdir.t 2009-10-22 17:10:40.000000000 -0400
+++ t/002_mapdir.t 2015-11-03 12:54:01.225040000 -0500
@@ -48,6 +48,7 @@
while(<$fh>) {
next if /^#/;
+ s/\s+.+//;
chomp;
push @files, File::Spec->rel2abs($_);
}
@@ -55,4 +56,4 @@
close($fh) or die;
return @files;
-}
\ No newline at end of file
+}