File Coverage

lib/WebService/Braintree/Subscription/Status.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::Subscription::Status;
2             $WebService::Braintree::Subscription::Status::VERSION = '0.94';
3 20     20   392 use 5.010_001;
  20         67  
4 20     20   108 use strictures 1;
  20         125  
  20         700  
5              
6 20     20   1913 use constant Active => 'Active';
  20         36  
  20         1629  
7 20     20   121 use constant Canceled => 'Canceled';
  20         35  
  20         845  
8 20     20   97 use constant Expired => 'Expired';
  20         31  
  20         827  
9 20     20   110 use constant PastDue => 'Past Due';
  20         43  
  20         856  
10 20     20   107 use constant Pending => 'Pending';
  20         42  
  20         1022  
11              
12 20         965 use constant All => (
13             Active,
14             Canceled,
15             Expired,
16             PastDue,
17             Pending
18 20     20   100 );
  20         42  
19              
20             1;
21             __END__