Use the harness instead of all of prove
[catagits/Catalyst-Runtime.git] / t / aggregate.t
CommitLineData
bf6d41be 1#!perl
2
3use strict;
4use warnings;
5
6use FindBin;
7use lib "$FindBin::Bin/lib";
8
ea571bd0 9BEGIN {
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}
bf6d41be 15
16my $tests = Test::Aggregate->new({
17 dirs => 't/aggregate',
ee534e6b 18 verbose => 0,
bf6d41be 19 set_filenames => 1,
9de53c41 20 findbin => 1,
bf6d41be 21});
22
23$tests->run;