Catalyst-Manual

 view release on metacpan or  search on metacpan

lib/Catalyst/Manual/Cookbook.pod  view on Meta::CPAN


=item A string which is a relative or absolute URI.

    request('/my/path');
    request('http://www.host.com/my/path');

=item An instance of L<URI>.

    request( URI->new('http://www.host.com/my/path') );

=item An instance of L<HTTP::Request>.

    request( HTTP::Request->new( GET => 'http://www.host.com/my/path') );

=back

C<request> returns an instance of L<HTTP::Response> and C<get> returns the
content (body) of the response.

=head3 Running tests locally

    mundus:~/MyApp chansen$ CATALYST_DEBUG=0 TEST_POD=1 prove --lib lib/ t/
    t/01app............ok

lib/Catalyst/Manual/Cookbook.pod  view on Meta::CPAN

=item * L<Test::WWW::Mechanize>

=item * L<WWW::Mechanize>

=item * L<LWP::UserAgent>

=item * L<HTML::Form>

=item * L<HTTP::Message>

=item * L<HTTP::Request>

=item * L<HTTP::Request::Common>

=item * L<HTTP::Response>

=item * L<HTTP::Status>

=item * L<URI>

=item * L<Test::More>

=item * L<Test::Pod>



( run in 0.474 second using v1.01-cache-2.11-cpan-de7293f3b23 )