File Coverage

blib/lib/Net/Travis/API/Role/Client.pm
Criterion Covered Total %
statement 14 16 87.5
branch n/a
condition n/a
subroutine 5 6 83.3
pod n/a
total 19 22 86.3


line stmt bran cond sub pod time code
1 2     2   7204 use 5.006; # our
  2         6  
2 2     2   8 use strict;
  2         2  
  2         42  
3 2     2   8 use warnings;
  2         2  
  2         154  
4              
5             package Net::Travis::API::Role::Client;
6              
7             our $VERSION = '0.002001';
8              
9             # ABSTRACT: Anything that fetches from Travis and returns JSON data
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13              
14              
15              
16              
17              
18              
19              
20              
21              
22              
23              
24 2     2   598 use Moo::Role qw( has );
  2         14622  
  2         13  
25              
26              
27              
28              
29              
30              
31              
32             has 'http_engine' => (
33             is => ro =>,
34             lazy => 1,
35             builder => sub {
36 0     0     require Net::Travis::API::UA;
37 0           return Net::Travis::API::UA->new();
38             },
39             );
40              
41 2     2   620 no Moo::Role;
  2         3  
  2         5  
42              
43             1;
44              
45             __END__