NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Test::Unit is dead. Long live the Test::Unit::Lite (Score:1)
Re: (Score:2)
Test::Class is the way to go here. It also integrates with all of the standard Perl testing libraries. It doesn't look like Test::Unit::Lite does that.
Re: (Score:1)
Re: (Score:2)
I should also add that if you really want to march to a different drummer and use a piece of software that virtually no one else will touch, that's fine, but at least see if you can submit patches to it so that it can at least output TAP and integrate with standard testing tools.
Re:Test::Unit is dead. Long live the Test::Unit::L (Score:1)
BTW, I'd like to see support for nested tests for TAP protocol, something like:
1..3
unit 1..2
ok PASS unit 1/1
ok PASS unit 1/2
unit 1..1
ok PASS unit 2/1
unit 1..3
ok PASS unit 3/1
not ok Something goes wrong with 3/2
ok PASS unit 3/3
It is sad that the JUnit model really can't be implemented with Perl's TAP because TAP protocol lacks of nested tests.
Reply to This
Parent
Re: (Score:2)
Agreed. This is a serious limitation of TAP. If you'd like to push for this, sign up for the TAP IETF mailing list and we can work on getting it done. [oreilly.com]
On the other hand, the xUnit model which says "die on failure and you have no choice in the matter" doesn't fit well with TAP, either. Tough to assert a leading plan of eight tests when it dies after three and you get a second failure because you didn't complete the plan (unless you artificially fill in a bunch of useless failing tests to pad things out).
Re: (Score:2)
Why do I always remember new points after I hit submit?
Actually, if you strictly adopt jUnit, it fits TAP quite nicely. Remember that a given test method containing several asserts is actually a single test. It's different from how Perl looks at things. So let's consider the following test method (I snagged it from a tutorial [clarkware.com]):
Re: (Score:1)
I think it would be much useful if TAP had support for nested tests:
i.e.:
1..2
unit 1..0 testAddItem
unit OK assertEquals(0.0, 0.0)
unit OK assertEquals(2, 2)
OK testAddItem
unit 1..0 testAnotherItem
unit not OK assertEquals(1, 2)
# no more assertions in this function
not OK testAnotherItem
etc.
I think I'll join the IETF effort because in my opinion the TAP protocol is t
Re: (Score:1)
Assertion numbers are like version numbers: they're meaningless except insofar as they're different from each other.