File Coverage

lib/WebService/Braintree/ApplePayCard/CardType.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1             package WebService::Braintree::ApplePayCard::CardType;
2             $WebService::Braintree::ApplePayCard::CardType::VERSION = '0.94';
3 20     20   262 use 5.010_001;
  20         55  
4 20     20   88 use strictures 1;
  20         98  
  20         589  
5              
6 20     20   1516 use constant AmericanExpress => "Apple Pay - American Express";
  20         30  
  20         1247  
7 20     20   112 use constant MasterCard => "Apple Pay - MasterCard";
  20         34  
  20         905  
8 20     20   94 use constant Visa => "Apple Pay - Visa";
  20         36  
  20         988  
9              
10 20         749 use constant All => [
11             AmericanExpress,
12             MasterCard,
13             Visa
14 20     20   92 ];
  20         39  
15              
16             1;
17             __END__