NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Double test run? (Score:1)
From that test file t/aggregate.t you linked to, wouldn't
make "prove -r t" run all the tests in t/aggregate twice? One time as regular test files, one time aggregated.
The dir with aggregated tests needs to live next to t.
Reply to This
Re: (Score:1)
I'm not quite sure if that's really what i want to do.
I tried to make test aggregation optional. Currently, if you don't have the required version of Test::Aggregate installed or explicitly disable aggregation, t/*.t (excluding t/aggregate.t) and t/aggregate/*.t will be run. prove -r t would work too after telling t/aggregate.t to check for the presence of Test::Aggregate.
When moving t/aggregate out of t/ prove -r t won't do what you usually want in case you don't have Test::Aggregate.
I have no idea which o