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.004';
3 4     4   2289 use v5.10;
  4         16  
4 4     4   35 use strict;
  4         9  
  4         92  
5 4     4   34 use warnings;
  4         9  
  4         207  
6              
7 4     4   20 use Moo::Role;
  4         7  
  4         25  
8              
9             requires qw(
10             to_string
11             );
12              
13             1;
14