![]() |
![]()
| ![]() |
![]()
NAMENet::HTTP::Spore::Middleware::Mock - Simple Mocker for Spore middlewares VERSIONversion 0.09 SYNOPSISmy $mock_server = { '/path/i/want/to/match' => sub { my $req = shift; ... $req->new_response(200, ['Content-Type' => 'text/plain'], 'ok'); } }; my $client = Net::HTTP::Spore->new_from_spec('spec.json'); $client->enable('Mock', tests => $mock_server); my $res = $client->my_rest_method(); is $res->status, 200; is $res->body, 'ok'; DESCRIPTIONAUTHORS
COPYRIGHT AND LICENSEThis software is copyright (c) 2012 by Linkfluence. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|