X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate.t;h=0696abb489e33cdc0d2fc52d8ddb3d2eb5b53e89;hb=no_base_component_view;hp=6722046ee6807f0bb696acf6a94ff49b87e62bdb;hpb=e8e8895a9f69e9438fd2278db03e75fa303f7532;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate.t b/t/aggregate.t index 6722046..0696abb 100644 --- a/t/aggregate.t +++ b/t/aggregate.t @@ -5,6 +5,14 @@ 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 }) { @@ -15,7 +23,7 @@ BEGIN { my $tests = Test::Aggregate->new({ (@ARGV ? (tests => \@ARGV) : (dirs => 't/aggregate')), - verbose => 0, + verbose => 1, # failures only set_filenames => 1, findbin => 1, });