File Coverage

blib/lib/Docker/Registry/IO.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Docker::Registry::IO;
2 6     6   21565 use Moo::Role;
  6         18  
  6         41  
3              
4 6     6   4612 use Docker::Registry::Request;
  6         87  
  6         228  
5 6     6   2331 use Docker::Registry::Response;
  6         21  
  6         210  
6              
7             # load this "almost empty" class because
8             # IO modules use $Docker::Registry::VERSION
9             # in the User Agent
10 6     6   2817 use Docker::Registry;
  6         26  
  6         317  
11              
12             requires 'send_request';
13              
14             1;