Re: Test::Most 0.02 (Adds Test::Warn and deferred plans)

2008-06-24 Thread Buddy Burden
Ovid, Are you on the latest version of Test::Deep? Ah, yes. That fixed it. Thanx! There are issues with previous versions having an isa() sub causing strange failures. Yeah, I saw something about that on the list, but it didn't occur to me that having a strange isa() could cause this

Re: Test::Most 0.02 (Adds Test::Warn and deferred plans)

2008-06-21 Thread Ovid
--- Buddy Burden [EMAIL PROTECTED] wrote: then it works again. Am _I_ doing something wrong here? It seems like some bizarre interaction between Test::Deep and ... well, something. :-) Are you on the latest version of Test::Deep? There are issues with previous versions having an isa()

Re: Test::Most 0.02 (Adds Test::Warn and deferred plans)

2008-06-20 Thread Buddy Burden
Ovid, The latter, of course, should assert the number of tests you expected to run, not the number of tests you've actually run. Otherwise, it's not much better than no_plan (except you're still protected from premature exits. Or, to look at it a different way, it would be _exactly_

Re: Test::Most 0.02 (Adds Test::Warn and deferred plans)

2008-06-20 Thread Buddy Burden
Ovid, I've just uploaded Test::Most 0.02 to the cpan. Crap ... you fixed that typo. :) I meant to let you know about this, but I got totally distracted before I could pin it down. So now I've got it down fairly sparse here ... create two files: # file: Testit.pm package Testit; use strict;

Test::Most 0.02 (Adds Test::Warn and deferred plans)

2008-06-18 Thread Ovid
Hi all, I've just uploaded Test::Most 0.02 to the cpan. Aside from Test::Warn, I've added deferred plans using a patch from barefootcoder++ (Buddy Burden). Example, the following will pass with Test::More 'no_plan': use Test::More 'no_plan'; ok 1; exit; ok 2; You can now guarantee