From: Jesse Luehrs Date: Wed, 11 Apr 2012 23:06:10 +0000 (-0500) Subject: fixed in test::dm X-Git-Tag: 2.0502~22 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6d928d320ef53f63b982a8c7c8df107747900bab;p=gitmo%2FMoose.git fixed in test::dm --- diff --git a/xt/author/test-my-dependents.t b/xt/author/test-my-dependents.t index 73a2c1c..34f4d05 100644 --- a/xt/author/test-my-dependents.t +++ b/xt/author/test-my-dependents.t @@ -97,13 +97,11 @@ my @modules = map { exists $name_fix{$_} ? $name_fix{$_} : $_ } @{ $res->{hits}{hits} }; plan tests => scalar @modules; -Test::DependentModules::_make_logs(); for my $module (@modules) { diag($module); if ($todo{$module}) { my $reason = $todo_reasons{$module}; $reason = '???' unless defined $reason; - local $Test::DependentModules::TODO = $reason; local $TODO = $reason; eval { test_module($module); 1 } or fail("Died when testing $module: $@");