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 2ddf5e8 commit b876d59Copy full SHA for b876d59
xt/dependent-modules.t
@@ -11,8 +11,14 @@ my $old = \&Test::DependentModules::_error_log;
11
my $new = sub { push @error_log, @_; $old->(@_); };
12
{ no warnings 'redefine'; *Test::DependentModules::_error_log = $new; }
13
14
-test_all_dependents #
15
- PPI => { exclude => qr/^(Apache2-SSI|Devel-IPerl|Padre)$/ };
+test_all_dependents PPI => {
+ exclude => qr/^(
16
+ # don't remember why i excluded these
17
+ Apache2-SSI|Devel-IPerl|Padre
18
+ # fails tests regarding directory write permissions, probably not PPI
19
+ |Devel-Examine-Subs
20
+ )$/x
21
+};
22
23
diag "\n\n---------- ERROR LOG START -----------\n\n",
24
@error_log,
0 commit comments