File Coverage

blib/lib/Net/Braintree/ValidationError.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Net::Braintree::ValidationError;
2 1     1   7 use Moose;
  1         2  
  1         7  
3              
4             has 'attribute' => (is => 'ro');
5             has 'code' => (is => 'ro');
6             has 'message' => (is => 'ro');
7              
8             1;