[DELTA]
3.26 2013-01-16
- Renamed env.opts.t to env_opts.t (for VMS)
- Skipped some TAP::Formatter::HTML tests due to this bug: #82738
'Test::Harness' => {
'MAINTAINER' => 'andya',
- 'DISTRIBUTION' => 'OVID/Test-Harness-3.25.tar.gz',
+ 'DISTRIBUTION' => 'OVID/Test-Harness-3.26.tar.gz',
'FILES' => q[cpan/Test-Harness],
'EXCLUDED' => [
qr{^examples/},
Revision history for Test-Harness
-3.25 2012-06-05
+3.26 2013-01-16
+ - Renamed env.opts.t to env_opts.t (for VMS)
+ - Skipped some TAP::Formatter::HTML tests due to this bug: #82738
+
+3.26 2012-06-05
- Rereleased to fix CPAN permission problem. No functional change.
3.24 2012-06-03
t/bailout.t
t/base.t
t/callbacks.t
-t/compat/env.opts.t
+t/compat/env_opts.t
t/compat/env.t
t/compat/failure.t
t/compat/inc-propagation.t
#!/usr/bin/perl -w
use strict;
-use Test::More (
- $^O eq 'VMS'
- ? ( skip_all => 'VMS' )
- : ( tests => 12 )
-);
+use Test::More tests => 12;
use Test::Harness;
is( $harness->jobs, 4, "set jobs correctly" );
}
SKIP: {
+ skip 'Can\'t locate object method "color" via package "TAP::Formatter::HTML" (RT 82738)',4;
skip "requires TAP::Formatter::HTML", 4
unless _has_module('TAP::Formatter::HTML');