in reply to Unit Testing in Perl

The consensus is anything that produces output compatible with Test::Harness::TAP. Usually, that means any testing module built on Test::Builder will work. Test::Class is a nice testing framework that's both Perl- and xUnit-ish. (It works nicely with Test::More and the other modules built on Test::Builder.)

Replies are listed 'Best First'.
Re^2: Unit Testing in Perl
by skyknight (Hermit) on Jun 26, 2005 at 12:40 UTC
    Hm, yes, in the course of my digging around I came across that and it looked like it might be a good fit for what I want to do. I'll try playing around with it and see if it feels like the natural choice for me. Thanks for the tip.
      I'll try playing around with it and see if it feels like the natural choice for me.

      If it doesn't feel like a natural choice for whatever reason I'd love to know the details so I can consider improvements :-)