File Coverage

blib/lib/WebService/Braintree/CreditCard/CardType.pm
Criterion Covered Total %
statement 45 45 100.0
branch n/a
condition n/a
subroutine 15 15 100.0
pod n/a
total 60 60 100.0


line stmt bran cond sub pod time code
1             package WebService::Braintree::CreditCard::CardType;
2             $WebService::Braintree::CreditCard::CardType::VERSION = '0.93';
3 1     1   10 use strict;
  1         4  
  1         42  
4              
5 1     1   7 use constant AmericanExpress => "American Express";
  1         4  
  1         92  
6 1     1   8 use constant CarteBlanche => "Carte Blanche";
  1         3  
  1         62  
7 1     1   8 use constant ChinaUnionPay => "China UnionPay";
  1         2  
  1         50  
8 1     1   6 use constant DinersClub => "Diners Club";
  1         3  
  1         52  
9 1     1   7 use constant Discover => "Discover";
  1         3  
  1         51  
10 1     1   7 use constant JCB => "JCB";
  1         4  
  1         48  
11 1     1   6 use constant Laser => "Laser";
  1         3  
  1         51  
12 1     1   8 use constant Maestro => "Maestro";
  1         4  
  1         52  
13 1     1   7 use constant MasterCard => "MasterCard";
  1         3  
  1         51  
14 1     1   7 use constant Solo => "Solo";
  1         3  
  1         50  
15 1     1   7 use constant Switch => "Switch";
  1         2  
  1         46  
16 1     1   8 use constant Visa => "Visa";
  1         3  
  1         49  
17 1     1   7 use constant Unknown => "Unknown";
  1         3  
  1         121  
18              
19 1         59 use constant All => [
20             AmericanExpress,
21             CarteBlanche,
22             ChinaUnionPay,
23             DinersClub,
24             Discover,
25             JCB,
26             Laser,
27             Maestro,
28             MasterCard,
29             Solo,
30             Switch,
31             Visa,
32             Unknown
33 1     1   8 ];
  1         3  
34             1;