We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6d69b9 commit 740f09bCopy full SHA for 740f09b
t/sharedir.t
@@ -85,7 +85,9 @@ SKIP: {
85
run_ok('make', 'install');
86
87
my $dir = catdir($install, qw/lib perl5 auto share dist TestDist share/);
88
- ok(-d $dir, 'Sharedir has been created');
+ ok(-d $dir, 'Sharedir has been created') or diag $dir;
89
+ open my $fh, '<', 'Makefile';
90
+ diag <$fh>;
91
ok(-e catfile($dir, 'normalfile'), 'File in sharedir has been created');
92
ok(-e catfile($dir, qw/dots .dotdir .dotfile/), 'A dotfile in a dotdir installed');
93
}
0 commit comments