File Coverage

blib/lib/App/HL7/Compare/Parser.pm
Criterion Covered Total %
statement 19 19 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 0 1 0.0
total 26 27 96.3


line stmt bran cond sub pod time code
1             package App::HL7::Compare::Parser;
2             $App::HL7::Compare::Parser::VERSION = '0.004';
3 4     4   134864 use v5.10;
  4         15  
4 4     4   23 use strict;
  4         8  
  4         146  
5 4     4   21 use warnings;
  4         8  
  4         207  
6              
7 4     4   669 use Moo;
  4         9815  
  4         50  
8 4     4   3645 use Mooish::AttributeBuilder -standard;
  4         2435  
  4         27  
9 4     4   2675 use App::HL7::Compare::Parser::Message;
  4         16  
  4         455  
10              
11             sub parse
12             {
13 14     14 0 241607 my ($self, $input, %opts) = @_;
14              
15 14         326 return App::HL7::Compare::Parser::Message->new(%opts, input => $input);
16             }
17              
18             1;
19