Optionally aggreagate tests.
[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 use Test::Aggregate;
10
11 my $tests = Test::Aggregate->new({
12     dirs          => 't/aggregate',
13     verbose       => 1,
14     set_filenames => 1,
15 });
16
17 $tests->run;