File Coverage

blib/lib/GeoIP2/Role/Model.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package GeoIP2::Role::Model;
2              
3 12     12   5138 use strict;
  12         26  
  12         319  
4 12     12   57 use warnings;
  12         18  
  12         451  
5              
6             our $VERSION = '2.006002';
7              
8 12     12   56 use Moo::Role;
  12         23  
  12         72  
9              
10 12     12   4361 use GeoIP2::Types qw( HashRef );
  12         22  
  12         509  
11              
12 12     12   63 use namespace::clean;
  12         31  
  12         80  
13              
14             has raw => (
15             is => 'ro',
16             isa => HashRef,
17             init_arg => 'raw',
18             required => 1,
19             );
20              
21             1;