confused_elf has asked for the wisdom of the Perl Monks concerning the following question:

Hi Monks, I just recently started using Catalyst and I can say that I'm loving it. But I'm having difficulties in testing it using the ./script/*_test.pl.

I'm thinking that the script has something to do with the t directory but I'm not sure how. I have read all possible docs that I could find but they aren't really helpful to me.

Have anyone out there that have used the testing script of Catalyst is willing to give me pointers or hints?.

Thanks a lot.

Replies are listed 'Best First'.
Re: Testing with Catalyst
by sri (Vicar) on Oct 06, 2005 at 18:36 UTC
    You better ask such specific Questions on the Mailing List or the irc channel (#catalyst, irc.perl.org).

    There are multiple ways to test Catalyst apps, most people use the built in framework Catalyst::Test or Test::WWW::Mechanize::Catalyst.
    Examples can be found in the countless tests included in the Catalyst distribution.

    script/myapp_test.pl is just a command line interface for quick n dirty testing.
      ahh....thanks, will do so.

      Thanks for the reply