File Coverage

blib/lib/App/HL7/Compare/Parser/Component.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 0 1 0.0
total 25 26 96.1


line stmt bran cond sub pod time code
1             package App::HL7::Compare::Parser::Component;
2             $App::HL7::Compare::Parser::Component::VERSION = '0.002';
3 4     4   49 use v5.10;
  4         14  
4 4     4   26 use strict;
  4         8  
  4         80  
5 4     4   16 use warnings;
  4         13  
  4         107  
6              
7 4     4   22 use Moo;
  4         6  
  4         29  
8              
9 4     4   3047 use App::HL7::Compare::Parser::Subcomponent;
  4         41  
  4         697  
10              
11             with qw(
12             App::HL7::Compare::Parser::Role::Partible
13             App::HL7::Compare::Parser::Role::Part
14             App::HL7::Compare::Parser::Role::RequiresInput
15             );
16              
17             sub part_separator
18             {
19 35     35 0 113 my ($self) = @_;
20              
21 35         422 return $self->msg_config->subcomponent_separator;
22             }
23              
24             sub _build_parts
25             {
26 35     35   359 my ($self) = @_;
27              
28 35         151 return $self->split_and_build($self->consume_input, 'App::HL7::Compare::Parser::Subcomponent');
29             }
30              
31             1;
32