Aggregate http-server.t 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 BEGIN {
10     unless (eval { require Test::Aggregate; Test::Aggregate->VERSION('0.364'); 1 }) {
11         require Test::More;
12         Test::More::plan(skip_all => 'Test::Aggregate 0.364 required for test aggregation');
13     }
14 }
15
16 my $tests = Test::Aggregate->new({
17     (@ARGV ? (tests => \@ARGV) : (dirs => 't/aggregate')),
18     verbose       => 0,
19     set_filenames => 1,
20     findbin       => 1,
21 });
22
23 $tests->run;