in reply to Re: Web testing without the web server.
in thread Web testing without the web server.

It looks to me as if Catalyst::Test will work for me.

# HTTP::Response & context object my($res, $c) = ctx_request('index.html');

If I understand this right, I get the response and context object as they were when the request finished. As such, I can dig in and get the parameters that were passed to the template, the HTML content, headers, etc. That's excellent!

Replies are listed 'Best First'.
Re^3: Web testing without the web server.
by tilly (Archbishop) on Mar 27, 2009 at 18:56 UTC
    That is correct. However be warned that out of the box it does not let you easily set things like remote IP addresses and cookies when you construct a request.