NAME
Test::WWW::Mechanize::CGI - Test CGI applications with Test::WWW::Mechanize
SYNOPSIS
use
CGI;
my
$mech
= Test::WWW::Mechanize::CGI->new;
$mech
->cgi(
sub
{
my
$q
= CGI->new;
$q
->header,
$q
->start_html(
'Hello World'
),
$q
->h1(
'Hello World'
),
$q
->end_html;
});
$mech
->title_is(
'Hello World'
);
$mech
->content_contains(
'Hello World'
);
DESCRIPTION
Provides a convenient way of testing CGI applications without a external daemon.
SEE ALSO
AUTHOR
Christian Hansen, ch@ngmedia.com
LICENSE
This library is free software. You can redistribute it and/or modify it under the same terms as perl itself.