# Finds the files that have the same name, case insensitively,
# in the current directory and its subdirectories
-BEGIN {
- chdir 't' if -d 't';
- @INC = '../lib';
-}
-
-
-
use warnings;
use strict;
use File::Find;
# Assumes that the path separator is exactly one character.
$name =~ s/^\.\..//;
push @{$files{lc $name}}, $name;
- }, '.');
+ }, '..');
my $failed;
use strict;
-# Somewhere we chdir and can't load any more modules...
-BEGIN {
- if ($^O eq 'MSWin32') {
- require Win32;
- };
- require overload;
-};
-
{
package My::Pod::Checker;
use strict;