kingpong / perl-Test-Spec

rSpec-like test system for Perl
http://search.cpan.org/dist/Test-Spec/lib/Test/Spec.pm
30 stars 17 forks source link

Fix the tests for Test::Builder1.5 / TAP version 13 #11

Closed schwern closed 12 years ago

schwern commented 12 years ago

In Test::Builder 1.5, TAP starts with a version header like...

TAP version 13
ok 1 - foo
ok 2 - bar
1..2

This patch just checks to see if the requisite test is output, not that it's the first line (or the first test).

You can find the latest Test::Builder 1.5 alpha here. https://metacpan.org/release/MSCHWERN/Test-Simple-1.005000_005/

kingpong commented 12 years ago

Thanks. This was merged in a17cb2e and is in version 0.45 of Test::Spec, now on CPAN.

schwern commented 12 years ago

Thanks for the timely release!