BEGIN {
plan
skip_all
=>
'Set $ENV{HFH_CONTROLLER_TEST} to run this test'
unless
$ENV
{HFH_CONTROLLER_TEST};
eval
"use Catalyst"
;
plan
skip_all
=>
'Catalyst required'
if
$@;
eval
"use Catalyst::Component::InstancePerContext"
;
plan
skip_all
=>
'Catalyst::Component::InstancePerContext required'
if
$@;
eval
"use Test::WWW::Mechanize::Catalyst"
;
plan
skip_all
=>
'Test::WWW::Mechanize::Catalyst required'
if
$@;
eval
"use Template"
;
plan
skip_all
=>
'Template required'
if
$@;
eval
"use Email::Valid"
;
plan
skip_all
=>
'Email::Valid required'
if
$@;
plan
tests
=> 5;
}
my
$mech
= Test::WWW::Mechanize::Catalyst->new;
$mech
->get_ok(
"/book/list"
);
$mech
->content_contains(
'Harry Potter'
,
'list contents'
);
$mech
->content_contains(
'Harry'
,
'get Harry Potter'
);
$mech
->content_contains(
'Boomsbury'
,
'get publisher'
);