aboutsummaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/04load_all.t3
1 files changed, 2 insertions, 1 deletions
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);
}