in reply to Testing framework in Perl

If you are used to other xUnit testing frameworks (e.g. JUnit) then you will find that Test::Unit is a pretty good port of those frameworks into Perl. The downside, however, is that is doesn't play well with the rest of the Perl testing framework. If you want to make use of the many useful testing modules on CPAN then Test::Class is the way to go.

And I strongly recommend that you get a copy of Perl Testing: A Developer's Notebook.

--
<http://dave.org.uk>

"The first rule of Perl club is you do not talk about Perl club."
-- Chip Salzenberg

Replies are listed 'Best First'.
Re^2: Testing framework in Perl
by adrianh (Chancellor) on Mar 17, 2006 at 13:50 UTC
    If you are used to other xUnit testing frameworks (e.g. JUnit) then you will find that Test::Unit is a pretty good port of those frameworks into Perl.

    Actually with the new version of JUnit and TestNG the gap isn't as wide as it was before... I must rewrite that section of the docs at some point :-)