X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate.t;fp=t%2Faggregate.t;h=0000000000000000000000000000000000000000;hp=e0713791e59152bb702240d51d9384304c244d19;hb=c2eac008b6f566090128f60259a6cc8fee720298;hpb=0739a7ecb8f44518900a7d056d6d2837d553321a diff --git a/t/aggregate.t b/t/aggregate.t deleted file mode 100644 index e071379..0000000 --- a/t/aggregate.t +++ /dev/null @@ -1,29 +0,0 @@ -use strict; -use warnings; - -use FindBin; -use lib "$FindBin::Bin/lib"; -use File::Spec::Functions 'catfile', 'updir'; - -BEGIN { - unless (-e catfile $FindBin::Bin, updir, '.aggregating') { - require Test::More; - Test::More::plan(skip_all => 'No test aggregation requested'); - } -} - -BEGIN { - unless (eval { require Test::Aggregate; Test::Aggregate->VERSION('0.364'); 1 }) { - require Test::More; - Test::More::plan(skip_all => 'Test::Aggregate 0.364 required for test aggregation'); - } -} - -my $tests = Test::Aggregate->new({ - (@ARGV ? (tests => \@ARGV) : (dirs => 't/aggregate')), - verbose => 0, - set_filenames => 1, - findbin => 1, -}); - -$tests->run;