File Coverage

blib/lib/App/HL7/Compare/Parser/Role/Part.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1             package App::HL7::Compare::Parser::Role::Part;
2             $App::HL7::Compare::Parser::Role::Part::VERSION = '0.004';
3 4     4   47789 use v5.10;
  4         18  
4 4     4   24 use strict;
  4         9  
  4         173  
5 4     4   40 use warnings;
  4         9  
  4         264  
6              
7 4     4   23 use Mooish::AttributeBuilder -standard;
  4         9  
  4         47  
8 4     4   2965 use Types::Common::Numeric qw(PositiveInt);
  4         113124  
  4         42  
9 4     4   4183 use Moo::Role;
  4         30  
  4         39  
10              
11             has param 'number' => (
12             isa => PositiveInt,
13             writer => 1,
14             );
15              
16             with qw(
17             App::HL7::Compare::Parser::Role::PartOfMessage
18             );
19              
20             1;
21