File Coverage

blib/lib/Docker/Registry/Auth/None.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod 0 1 0.0
total 7 8 87.5


line stmt bran cond sub pod time code
1             package Docker::Registry::Auth::None;
2 5     5   701960 use Moo;
  5         33556  
  5         27  
3             with 'Docker::Registry::Auth';
4              
5             sub authorize {
6 7     7 0 97 my ($self, $request) = @_;
7 7         22 return $request;
8             }
9              
10             1;