File Coverage

lib/WebService/Braintree/MerchantAccount/FundingDetails.pm
Criterion Covered Total %
statement 8 10 80.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 11 15 73.3


line stmt bran cond sub pod time code
1             package WebService::Braintree::MerchantAccount::FundingDetails;
2             $WebService::Braintree::MerchantAccount::FundingDetails::VERSION = '0.94';
3 20     20   371 use 5.010_001;
  20         64  
4 20     20   102 use strictures 1;
  20         126  
  20         763  
5              
6 20     20   1889 use Moose;
  20         54  
  20         122  
7             extends "WebService::Braintree::ResultObject";
8              
9             sub BUILD {
10 0     0 0   my ($self, $attributes) = @_;
11 0           $self->set_attributes_from_hash($self, $attributes);
12             }
13              
14             __PACKAGE__->meta->make_immutable;
15              
16             1;
17             __END__