NAME

Catalyst::Engine::Test - Catalyst Test Engine

SYNOPSIS

A script using the Catalyst::Engine::Test module might look like:

#!/usr/bin/perl -w

BEGIN { 
   $ENV{CATALYST_ENGINE} = 'Test';
}

use strict;
use lib '/path/to/MyApp/lib';
use MyApp;

MyApp->run('/a/path');

DESCRIPTION

This is the Catalyst engine specialized for testing.

OVERLOADED METHODS

This class overloads some methods from Catalyst::Engine.

$c->finalize_headers
$c->finalize_output
$c->prepare_connection
$c->prepare_headers
$c->prepare_parameters
$c->prepare_path
$c->prepare_request($r)
$c->prepare_uploads
$c->run

SEE ALSO

Catalyst.

AUTHOR

Sebastian Riedel, sri@cpan.org Christian Hansen, ch@ngmedia.com

COPYRIGHT

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.