File Coverage

blib/lib/PayProp/API/Public/Client/Role/Attribute/APIVersion.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package PayProp::API::Public::Client::Role::Attribute::APIVersion;
2              
3 27     27   527777 use strict;
  27         65  
  27         1214  
4 27     27   154 use warnings;
  27         87  
  27         1453  
5              
6 27     27   748 use Mouse::Role;
  27         1848  
  27         312  
7              
8              
9             has api_version => (
10             is => 'ro',
11             isa => 'Str',
12             default => 'v1.1',
13             );
14              
15             1;