File Coverage

blib/lib/Net/Braintree/PayPalDetails.pm
Criterion Covered Total %
statement 3 5 60.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod 0 1 0.0
total 4 8 50.0


line stmt bran cond sub pod time code
1             package Net::Braintree::PayPalDetails;
2              
3 1     1   5 use Moose;
  1         2  
  1         5  
4             extends 'Net::Braintree::ResultObject';
5              
6             sub BUILD {
7 0     0 0   my ($self, $attributes) = @_;
8 0           $self->set_attributes_from_hash($self, $attributes);
9             }
10              
11             1;