NAME
Test2::Tools::HTTP::UA::Mojo - Mojo user agent wrapper for Test2::Tools::HTTP
VERSION
version 0.05
SYNOPSIS
use Test2::Tools::HTTP;
use Mojo::UserAgent;
http_ua( Mojo::UserAgent->new )
http_request(
  GET('http://example.test'),
  http_response {
    http_code 200;
    http_response match qr/something/;
    ...
  }
);;
done_testing;
DESCRIPTION
This module is a user agent wrapper for Test2::Tools::HTTP that allows you to use Mojo::UserAgent as a user agent for testing.
SEE ALSO
AUTHOR
Graham Ollis <plicease@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2018-2022 by Graham Ollis.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.