File Coverage

blib/lib/Net/Braintree/ApplePayCard.pm
Criterion Covered Total %
statement 6 11 54.5
branch n/a
condition n/a
subroutine 2 5 40.0
pod 0 3 0.0
total 8 19 42.1


line stmt bran cond sub pod time code
1             package Net::Braintree::ApplePayCard;
2 1     1   321 use Net::Braintree::ApplePayCard::CardType;
  1         2  
  1         21  
3              
4 1     1   4 use Moose;
  1         1  
  1         4  
5             extends 'Net::Braintree::PaymentMethod';
6              
7             my $meta = __PACKAGE__->meta;
8              
9             sub BUILD {
10 0     0 0   my ($self, $attributes) = @_;
11 0           $self->set_attributes_from_hash($self, $attributes);
12             }
13              
14             sub expiration_date {
15 0     0 0   my $self = shift;
16 0           return $self->expiration_month . "/" . $self->expiration_year;
17             }
18              
19             sub is_default {
20 0     0 0   return shift->default;
21             }
22              
23             1;