The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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.

WEBSITE

You can find information about CGI::Test and other related modules at:

   http://cgi-test.sourceforge.net

PUBLIC CVS SERVER

CGI::Test now has a publicly accessible CVS server provided by SourceForge (www.sourceforge.net). You can access it by going to:

    http://sourceforge.net/cvs/?group_id=89570

AUTHORS

The original author is Raphael Manfredi <Raphael_Manfredi@pobox.com>.

Send bug reports, hints, tips, suggestions to Steven Hilton at <mshiltonj@mshiltonj.com>

SEE ALSO

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