X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F04load_all.t;h=54c1bb0656824db68d744fc788135153cdae0e68;hb=d88f18a05c2bb2536031f46a09a54e14341e73d4;hp=a7923fc87df71537080d50b8c4d4632512b2ff78;hpb=7adfd53f17f66ffe93763e944ed1d3fc52a369dc;p=catagits%2FReaction.git diff --git a/t/04load_all.t b/t/04load_all.t index a7923fc..54c1bb0 100644 --- a/t/04load_all.t +++ b/t/04load_all.t @@ -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); }