Require Test::DM 0.08 and use test_modules() so we can test in parallel
Dave Rolsky [Tue, 12 Apr 2011 16:32:19 +0000 (11:32 -0500)]
xt/author/test-my-dependents.t

index f044b31..a33ce67 100644 (file)
@@ -10,9 +10,9 @@ BEGIN {
 }
 
 use Test::Requires {
-    'Test::DependentModules' => '0.01', # skip all if not installed
+    'Test::DependentModules' => '0.08', # skip all if not installed
 };
-use Test::DependentModules qw( test_all_dependents test_module );
+use Test::DependentModules qw( test_all_dependents test_modules );
 
 use DateTime;
 use Class::MOP ();
@@ -37,7 +37,7 @@ if ( $ENV{MOOSE_TEST_MD_ALL} ) {
 else {
     my @modules = map { chomp; $_ } <DATA>;
     plan tests => scalar @modules;
-    test_module($_) for @modules;
+    test_modules(@modules);
 }
 
 __DATA__