The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

CGI::Test::Page::Real - Abstract representation of a real page

SYNOPSIS

 # Inherits from CGI::Test::Page
 # $page holds a CGI::Test::Page::Real object

 use CGI::Test;

 ok 1, $page->raw_content =~ /test is ok/;
 ok 2, $page->uri->scheme eq "http";
 ok 3, $page->content_type !~ /html/;

DESCRIPTION

This class is the representation of a real page, i.e. something physically returned by the server and which is not an error.

INTERFACE

The interface is the same as the one described in CGI::Test::Page, with the following additions:

raw_content

Returns the raw content of the page, as a string.

raw_content_ref

Returns a reference to the raw content of the page, to avoid making yet another copy.

uri

The URI object, identifying the page we requested.

AUTHOR

Raphael Manfredi <Raphael_Manfredi@pobox.com>

SEE ALSO

CGI::Test::Page(3), CGI::Test::Page::HTML(3), CGI::Test::Page::Other(3), CGI::Test::Page::Text(3), URI(3).