X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FExtUtils%2FManifest.t;h=f531406a4488242ce235a56e3a802e6de1cc05a3;hb=ea5fc951afef02e4de7ec4d7a93e8ef289815e8b;hp=2492e2af43cbf540d5f4be86509852760bb48389;hpb=349e1be188d528e573d1d7b9ae200dd93769fda1;p=p5sagit%2Fp5-mst-13.2.git diff --git a/lib/ExtUtils/Manifest.t b/lib/ExtUtils/Manifest.t index 2492e2a..f531406 100644 --- a/lib/ExtUtils/Manifest.t +++ b/lib/ExtUtils/Manifest.t @@ -55,10 +55,10 @@ ok( add_file('foo'), 'add a temporary file' ); # there shouldn't be a MANIFEST there my ($res, $warn) = catch_warning( \&mkmanifest ); -is( $warn, <{$quux} ), "manifind found $quux" ); # only MANIFEST and foo are in the manifest my $files = maniread(); is( keys %$files, 2, 'two files found' ); -is( join(' ', sort keys %$files), 'MANIFEST foo', 'both files found' ); +is( join(' ', sort { lc($a) cmp lc($b) } keys %$files), 'foo MANIFEST', 'both files found' ); # poison the manifest, and add a comment that should be reported add_file( 'MANIFEST', 'none #none' );