File Coverage

blib/lib/Business/CPI/Base/Account.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Business::CPI::Base::Account;
2             # ABSTRACT: General implementation of Account role
3 2     2   1345 use utf8;
  2         11  
  2         10  
4 2     2   541 use Moo;
  2         8166  
  2         12  
5              
6             our $VERSION = '0.924'; # VERSION
7              
8             with 'Business::CPI::Role::Account';
9              
10             1;
11              
12             __END__