File Coverage

blib/lib/Mojo/UserAgent/Mockable/Proxy.pm
Criterion Covered Total %
statement 5 6 83.3
branch n/a
condition n/a
subroutine 2 3 66.6
pod 1 1 100.0
total 8 10 80.0


line stmt bran cond sub pod time code
1 16     16   308 use 5.014;
  16         197  
2              
3             # ABSTRACT: Proxy class for Mojo::UserAgent::Mockable that will not set any proxy.
4              
5             package Mojo::UserAgent::Mockable::Proxy;
6             $Mojo::UserAgent::Mockable::Proxy::VERSION = '1.58';
7 16     16   92 use Mojo::Base 'Mojo::UserAgent::Proxy';
  16         31  
  16         114  
8              
9             1;
10             sub detect { # Do not set any proxy
11 0     0 1   return;
12             }
13              
14             __END__
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             Mojo::UserAgent::Mockable::Proxy - Proxy class for Mojo::UserAgent::Mockable that will not set any proxy.
23              
24             =head1 VERSION
25              
26             version 1.58
27              
28             =head1 AUTHOR
29              
30             Kit Peters <popefelix@gmail.com>
31              
32             =head1 COPYRIGHT AND LICENSE
33              
34             This software is copyright (c) 2021 by Kit Peters.
35              
36             This is free software; you can redistribute it and/or modify it under
37             the same terms as the Perl 5 programming language system itself.
38              
39             =cut