File Coverage

blib/lib/App/HL7/Compare/Parser/Role/Stringifies.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package App::HL7::Compare::Parser::Role::Stringifies;
2             $App::HL7::Compare::Parser::Role::Stringifies::VERSION = '0.001';
3 3     3   1761 use v5.10;
  3         11  
4 3     3   17 use strict;
  3         6  
  3         65  
5 3     3   16 use warnings;
  3         5  
  3         84  
6              
7 3     3   17 use Moo::Role;
  3         5  
  3         20  
8              
9             requires qw(
10             to_string
11             );
12              
13             1;
14