File Coverage

blib/lib/Net/Braintree/Transaction/EscrowStatus.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 28 28 100.0


line stmt bran cond sub pod time code
1             package Net::Braintree::Transaction::EscrowStatus;
2 1     1   4 use strict;
  1         1  
  1         39  
3              
4 1     1   4 use constant HoldPending => 'hold_pending';
  1         2  
  1         45  
5 1     1   4 use constant Held => 'held';
  1         1  
  1         32  
6 1     1   9 use constant ReleasePending => 'release_pending';
  1         1  
  1         41  
7 1     1   4 use constant Released => 'released';
  1         1  
  1         32  
8 1     1   4 use constant Refunded => 'refunded';
  1         1  
  1         85  
9              
10 1         67 use constant All => (
11             HoldPending,
12             Held,
13             ReleasePending,
14             Released,
15             Refunded
16 1     1   7 );
  1         2  
17              
18             1;