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.002';
3 4     4   2411 use v5.10;
  4         16  
4 4     4   22 use strict;
  4         11  
  4         83  
5 4     4   19 use warnings;
  4         8  
  4         103  
6              
7 4     4   19 use Moo::Role;
  4         8  
  4         23  
8              
9             requires qw(
10             to_string
11             );
12              
13             1;
14