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 6     6   757995 use Moo;
  6         36669  
  6         39  
3             with 'Docker::Registry::Auth';
4              
5             sub authorize {
6 12     12 0 265 my ($self, $request) = @_;
7 12         32 return $request;
8             }
9              
10             1;