do not include .git directory
[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' ],
cb07f3b8 11 except => qr/Role/,
7adfd53f 12 );
13
102a0cca 14foreach my $class (grep !/\.ToDo/,
15 sort do { local @INC = ('lib'); $finder->plugins }) {
7adfd53f 16 Test::More::use_ok($class);
17}