File Coverage

blib/lib/TOML/Dumper/Context.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 15 16 93.7


line stmt bran cond sub pod time code
1             package TOML::Dumper::Context;
2 2     2   8 use strict;
  2         3  
  2         53  
3 2     2   6 use warnings;
  2         3  
  2         50  
4              
5 2     2   760 use TOML::Dumper::Context::Root;
  2         6  
  2         106  
6              
7             sub new {
8 1     1 0 2 my $class = shift;
9 1         6 return TOML::Dumper::Context::Root->new(@_);
10             }
11              
12             1;
13             __END__