Subject: | Upgrade Test::More |
I'm working on RequireVcs and it would be very useful if the note() and
done_testing() features of Test::More were available. note() in
particular allows better organization of tests into named blocks. It
also allows having explanatory notes in testing loops about what's being
tested that loop, rather than having to put it in each test description.
note "Check all VCS dir types"; {
for my $type (@VCS_TYPES) {
note "VCS type $type";
...do testing...
}
}
done_testing() combines the benefits of a static plan with the benefits
of no_plan.
The recommended version would be 0.88, released 3 years ago. 5.10.1 and
up satisfy that.