work around some bugs in Test::DM for now
Jesse Luehrs [Tue, 10 Apr 2012 00:59:17 +0000 (19:59 -0500)]
xt/author/test-my-dependents.t

index f70dab9..b89d855 100644 (file)
@@ -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 {