File Coverage

blib/lib/WebService/Braintree/Subscription/Status.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 WebService::Braintree::Subscription::Status;
2             $WebService::Braintree::Subscription::Status::VERSION = '0.92';
3 1     1   5 use strict;
  1         2  
  1         28  
4              
5 1     1   5 use constant Active => 'Active';
  1         1  
  1         59  
6 1     1   5 use constant Canceled => 'Canceled';
  1         2  
  1         34  
7 1     1   4 use constant Expired => 'Expired';
  1         2  
  1         32  
8 1     1   5 use constant PastDue => 'Past Due';
  1         2  
  1         55  
9 1     1   6 use constant Pending => 'Pending';
  1         2  
  1         47  
10              
11 1         43 use constant All => (
12             Active,
13             Canceled,
14             Expired,
15             PastDue,
16             Pending
17 1     1   5 );
  1         1  
18              
19             1;