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.001';
3 3     3   29926 use v5.10;
  3         16  
4 3     3   18 use strict;
  3         8  
  3         64  
5 3     3   16 use warnings;
  3         6  
  3         93  
6              
7 3     3   18 use Mooish::AttributeBuilder -standard;
  3         5  
  3         35  
8 3     3   1913 use Types::Common::Numeric qw(PositiveInt);
  3         67188  
  3         33  
9 3     3   2631 use Moo::Role;
  3         8  
  3         32  
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