NAME
Socialtext::Resting::Mock - Fake rester
SYNOPSIS
my $rester = Socialtext::Resting::Mock->(file => 'foo');
# returns content of 'foo'
$rester->get_page('bar');
FUNCTIONS
new( %opts )
Create a new fake rester object. Options:
- file
-
File to return the contents of.
get_page( $page_name )
Returns the content of the specified file or the page stored locally in the object.
put_page( $page_name )
Stores the page content in the object.
put_pagetag( $page, $tag )
Stores the page tags in the object.
get_pagetags( $page )
Retrieves page tags stored in the object.
die_on_put( $rc )
Tells the next put_page() to die with the supplied return code.
AUTHOR
Luke Closs, <luke.closs at socialtext.com>
COPYRIGHT & LICENSE
Copyright 2006 Luke Closs, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.