debug for button events - missed on last commit
[catagits/Reaction.git] / t / 04load_all.t
CommitLineData
7adfd53f 1use strict;
2use warnings;
3use Test::More ();
4
5Test::More::plan('no_plan');
6
7use Module::Pluggable::Object;
8
9my $finder = Module::Pluggable::Object->new(
10 search_path => [ 'Reaction' ],
11 );
12
102a0cca 13foreach my $class (grep !/\.ToDo/,
14 sort do { local @INC = ('lib'); $finder->plugins }) {
7adfd53f 15 Test::More::use_ok($class);
16}