NAME
API::Plesk::Mock - Module for testing API::Plesk without sending real requests to Plesk API.
SYNOPSIS
use API::Plesk::Mock;
my $api = API::Plesk::Mock->new(
username => 'user', # required
password => 'pass', # required
url => 'https://127.0.0.1:8443/enterprise/control/agent.php', # required
api_version => '1.6.3.1',
debug => 0,
timeout => 30,
);
$api->mock_response($some_response_xml);
$api->mock_error($some_error_text);
DESCRIPTION
Module for testing API::Plesk without sending real requests to Plesk API.
METHODS
AUTHOR
Ivan Sokolov <ivsokolov[at]cpan.org>
COPYRIGHT AND LICENSE
Copyright (C) 2008 by Ivan Sokolov
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.