File Coverage

blib/lib/IRC/Indexer/Output/Dumper.pm
Criterion Covered Total %
statement 9 17 52.9
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 24 58.3


line stmt bran cond sub pod time code
1             package IRC::Indexer::Output::Dumper;
2              
3 1     1   3079 use strict;
  1         2  
  1         263  
4 1     1   6 use warnings;
  1         3  
  1         35  
5              
6 1     1   2600 use Data::Dumper;
  1         19491  
  1         264  
7              
8             require IRC::Indexer::Output;
9             our @ISA = qw/IRC::Indexer::Output/;
10              
11             sub dump {
12 0     0 1   my ($self) = @_;
13 0           my $input = $self->{Input};
14 0           $self->{Output} = Dumper($input);
15 0           $self->SUPER::dump();
16             }
17              
18             sub write {
19 0     0 1   my ($self, $path) = @_;
20 0           my $input = $self->{Input};
21 0           $self->{Output} = Dumper($input);
22 0           $self->SUPER::write($path);
23             }
24              
25             1;
26             __END__