Subject: | The subtest workaround is ugly for Test::Aggregate::Nested |
In the POD of Test::Aggregate::Nested, this workaround is described if you need to run tests before or after the aggregate tests:
use Test::More tests => 2;
use Test::Aggregate::Nested;
subtest 'Nested tests' => sub {
Test::Aggregate::Nested->new({ dirs => 'aggtests/' })->run;
};
ok $some_other_test;
This test generates really ugly output, especially if you're using something like Tap::Formatter::HTML.
I've created a pull request with the desired changes. https://github.com/rwstauner/test-aggregate/pull/3