X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate.t;h=7943b5b0b66b545bd59856cfa88eaf6ce078b2d7;hb=518576166dfa8607e2a0384ac46fa061dd931884;hp=fc10888abdaa65dcd478795213cddc826e78ae85;hpb=bf6d41befe434ea682a1e20dcb090e05237d713a;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate.t b/t/aggregate.t index fc10888..7943b5b 100644 --- a/t/aggregate.t +++ b/t/aggregate.t @@ -6,12 +6,18 @@ use warnings; use FindBin; use lib "$FindBin::Bin/lib"; -use Test::Aggregate; +BEGIN { + unless (eval { require Test::Aggregate; Test::Aggregate->VERSION('0.35_05'); 1 }) { + require Test::More; + Test::More::plan(skip_all => 'Test::Aggregate 0.35_05 required for test aggregation'); + } +} my $tests = Test::Aggregate->new({ dirs => 't/aggregate', - verbose => 1, + verbose => 0, set_filenames => 1, + findbin => 1, }); $tests->run;