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

# 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/;

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

The interface is the same as the one described in CGI::Test::Page, with the following additions:
raw_contentReturns the raw content of the page, as a string.
raw_content_refReturns a reference to the raw content of the page, to avoid making yet another copy.
uriThe URI object, identifying the page we requested.

Raphael Manfredi <Raphael_Manfredi@pobox.com>

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