File Coverage

blib/lib/DBIx/Inspector/Iterator/Null.pm
Criterion Covered Total %
statement 9 15 60.0
branch 0 2 0.0
condition n/a
subroutine 3 6 50.0
pod 0 3 0.0
total 12 26 46.1


line stmt bran cond sub pod time code
1             package DBIx::Inspector::Iterator::Null;
2 1     1   7 use strict;
  1         2  
  1         65  
3 1     1   8 use warnings;
  1         2  
  1         35  
4 1     1   6 use utf8;
  1         2  
  1         7  
5              
6             sub new {
7 0     0 0   my $class = shift;
8 0 0         my %args = @_ == 1 ? %{ $_[0] } : @_;
  0            
9 0           bless {%args}, $class;
10             }
11              
12 0     0 0   sub next { undef }
13 0     0 0   sub all { return }
14              
15             1;