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