Re: How would I use TAPx::Harness to run C++ TAP output?

2007-03-08 Thread Julien Beasley
agnosticness of TAP.. whats the test harness to use that doesn't care if your test programs are compiled executables, and how do you use it? Everything I've read in TAPX::Harness implies the use of an interpreter of some kind Julien On 3/8/07, Julien Beasley [EMAIL PROTECTED] wrote: I'm trying

Test::Files messes with TODO tests in Test::Harness?

2007-03-07 Thread Julien Beasley
Hi, I've found that using Test::Files in a test script changes the output of TODO tests in Test::Harness. == begin test.pl== use strict; use warnings; use lib '../../perl/lib'; use Test::More; use Test::Files; plan tests = 2; TODO: { local $TODO = TODO Testing; is(1, 2, a failing test);