Moved action methods from t/lib/TestApp.pm to t/lib/Test/Controller/Root.pm. Uncommen...
[catagits/Catalyst-Runtime.git] / t / aggregate.t
1 #!perl
2
3 use strict;
4 use warnings;
5
6 use FindBin;
7 use lib "$FindBin::Bin/lib";
8
9 BEGIN {
10     unless (eval { require Test::Aggregate; Test::Aggregate->VERSION('0.35_05'); 1 }) {
11         require Test::More;
12         Test::More::plan(skip_all => 'Test::Aggregate 0.35_05 required for test aggregation');
13     }
14 }
15
16 my $tests = Test::Aggregate->new({
17     dirs          => 't/aggregate',
18     verbose       => 0,
19     set_filenames => 1,
20     findbin       => 1,
21 });
22
23 $tests->run;