debug for button events - missed on last commit
[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 (grep !/\.ToDo/,
14                    sort do { local @INC = ('lib'); $finder->plugins }) {
15   Test::More::use_ok($class);
16 }