Test::Mock::LWP

Test::Mock::LWP is a Perl module for easy mocking of LWP packages.
Download

Test::Mock::LWP Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Luke Closs
  • Publisher web site:
  • http://search.cpan.org/~lukec/Test-Mock-LWP-0.05/lib/Test/Mock/LWP.pm

Test::Mock::LWP Tags


Test::Mock::LWP Description

Test::Mock::LWP is a Perl module for easy mocking of LWP packages. Test::Mock::LWP is a Perl module for easy mocking of LWP packages.SYNOPSISMake LWP packages to make testing easier. use Test::Mock::LWP; # Setup fake response content and code $Mock_response->mock( content => sub { 'foo' } ); $Mock_resp->mock( code => sub { 201 } ); # Validate args passed to request constructor is_deeply $Mock_request->new_args, @expected_args; # Validate request headers is_deeply , ]; # Special User Agent Behaviour $Mock_ua->mock( request => sub { die 'foo' } );This package arises from duplicating the same code to mock LWP et al in several different modules I've written. This version is very minimalist, but works for my needs so far. I'm very open to new suggestions and improvements. Requirements: · Perl


Test::Mock::LWP Related Software