saner load_all test
matthewt [Tue, 8 Jul 2008 20:38:04 +0000 (20:38 +0000)]
t/04load_all.t

index a7923fc..54c1bb0 100644 (file)
@@ -10,6 +10,7 @@ my $finder = Module::Pluggable::Object->new(
                search_path => [ 'Reaction' ],
              );
 
-foreach my $class (sort $finder->plugins) {
+foreach my $class (grep !/\.ToDo/,
+                   sort do { local @INC = ('lib'); $finder->plugins }) {
   Test::More::use_ok($class);
 }