projects
/
catagits/Reaction.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
c28a790
)
saner load_all test
matthewt [Tue, 8 Jul 2008 20:38:04 +0000 (20:38 +0000)]
t/04load_all.t
patch
|
blob
|
blame
|
history
diff --git
a/t/04load_all.t
b/t/04load_all.t
index
a7923fc
..
54c1bb0
100644
(file)
--- 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);
}