aboutsummaryrefslogtreecommitdiffstats
path: root/t/04load_all.t
blob: a7923fc87df71537080d50b8c4d4632512b2ff78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use warnings;
use Test::More ();

Test::More::plan('no_plan');

use Module::Pluggable::Object;

my $finder = Module::Pluggable::Object->new(
               search_path => [ 'Reaction' ],
             );

foreach my $class (sort $finder->plugins) {
  Test::More::use_ok($class);
}