r72472@cain (orig r417): matthewt | 2007-12-14 21:10:01 +0000
[catagits/Reaction.git] / t / 04load_all.t
1 use strict;
2 use warnings;
3 use Test::More ();
4
5 Test::More::plan('no_plan');
6
7 use Module::Pluggable::Object;
8
9 my $finder = Module::Pluggable::Object->new(
10                search_path => [ 'Reaction' ],
11              );
12
13 foreach my $class (sort $finder->plugins) {
14   Test::More::use_ok($class);
15 }