From: Jesse Luehrs Date: Tue, 10 Apr 2012 00:59:17 +0000 (-0500) Subject: work around some bugs in Test::DM for now X-Git-Tag: 2.0502~25 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=bc5eb9adf8332d69bae87fa82bd4ac13f9a9e9a8;p=gitmo%2FMoose.git work around some bugs in Test::DM for now --- diff --git a/xt/author/test-my-dependents.t b/xt/author/test-my-dependents.t index f70dab9..b89d855 100644 --- a/xt/author/test-my-dependents.t +++ b/xt/author/test-my-dependents.t @@ -83,11 +83,12 @@ my @modules = map { exists $name_fix{$_} ? $name_fix{$_} : $_ } @{ $res->{hits}{hits} }; plan tests => scalar @modules; +Test::DependentModules::_make_logs(); for my $module (@modules) { if ($skip{$module}) { my $reason = $skip_reasons{$module}; $reason = '???' unless defined $reason; - local $TODO = $reason; + local $Test::DependentModules::TODO = $reason; test_module($module); } else {