NAME
      Test::Mock::LWP::Dispatch − mocks LWP::UserAgent and dispatches your
      requests/responses

SYNOPSIS
        # in your *.t
        use Test::Mock::LWP::Dispatch;
        use HTTP::Response;

        # global mappings for requests and responses for LWP::UserAgent
        $mock_ua‐>map(’http://example.com’, HTTP::Response‐>new(...));
        # or
        $mock_ua‐>map(qr!^http://example.com/page!, sub { my $request = shift;
                                                          # ... create $response
                                                          return $response; });

        # or make local mappings
        my $ua = LWP::UserAgent‐>new;
        $ua‐>map(...);

DESCRIPTION
      See Test::Mock::LWP::Dispatch POD documentation.

AUTHORS
      Yury Zavarin "[email protected]".

LICENSE
      This library is free software; you can redistribute it and/or modify it
      under the same terms as Perl itself.

SEE ALSO
      http://github.com/tadam/Test−Mock−LWP−Dispatch
      Test::Mock::LWP
      LWP::UserAgent