File Coverage

blib/lib/Net/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 Net::Braintree::Subscription::Status;
2 1     1   4 use strict;
  1         2  
  1         28  
3              
4 1     1   4 use constant Active => 'Active';
  1         1  
  1         64  
5 1     1   3 use constant Canceled => 'Canceled';
  1         2  
  1         34  
6 1     1   4 use constant Expired => 'Expired';
  1         1  
  1         51  
7 1     1   8 use constant PastDue => 'Past Due';
  1         2  
  1         34  
8 1     1   3 use constant Pending => 'Pending';
  1         1  
  1         45  
9              
10 1         57 use constant All => (
11             Active,
12             Canceled,
13             Expired,
14             PastDue,
15             Pending
16 1     1   3 );
  1         1  
17              
18             1;