File Coverage

lib/WebService/Braintree/Transaction/EscrowStatus.pm
Criterion Covered Total %
statement 23 23 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod n/a
total 31 31 100.0


line stmt bran cond sub pod time code
1             package WebService::Braintree::Transaction::EscrowStatus;
2             $WebService::Braintree::Transaction::EscrowStatus::VERSION = '0.94';
3 20     20   287 use 5.010_001;
  20         63  
4 20     20   101 use strictures 1;
  20         105  
  20         644  
5              
6 20     20   1667 use constant HoldPending => 'hold_pending';
  20         46  
  20         1045  
7 20     20   114 use constant Held => 'held';
  20         53  
  20         905  
8 20     20   110 use constant ReleasePending => 'release_pending';
  20         38  
  20         845  
9 20     20   110 use constant Released => 'released';
  20         55  
  20         916  
10 20     20   110 use constant Refunded => 'refunded';
  20         34  
  20         1124  
11              
12 20         962 use constant All => (
13             HoldPending,
14             Held,
15             ReleasePending,
16             Released,
17             Refunded
18 20     20   117 );
  20         43  
19              
20             1;
21             __END__