File Coverage

blib/lib/Business/CPI/Buyer/Moip.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Business::CPI::Buyer::Moip;
2 4     4   371748 use Moo;
  4         92936  
  4         26  
3              
4             extends qw/Business::CPI::Buyer/;
5              
6             =pod
7              
8             =encoding utf-8
9              
10             =head1 NAME
11              
12             Business::CPI::Buyer::Moip
13              
14             =head1 DESCRIPTION
15              
16             extends Business::CPI::Buyer
17              
18             =head1 ATTRIBUTES
19              
20             =head2 phone
21              
22             buyer phone number
23              
24             =cut
25              
26             has phone => (
27             is => 'rw',
28             );
29              
30             =head2 id_pagador
31              
32             de acordo com os docs: http://labs.moip.com.br/referencia/integracao_xml_identificacao/
33              
34             =cut
35              
36             has id_pagador => (
37             is => 'rw',
38             );
39              
40             1;