File Coverage

lib/Code/Statistics/Target/nop.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1 1     1   1666 use strict;
  1         3  
  1         42  
2 1     1   6 use warnings;
  1         3  
  1         65  
3              
4             package Code::Statistics::Target::nop;
5             {
6             $Code::Statistics::Target::nop::VERSION = '1.112980';
7             }
8              
9             # ABSTRACT: represents nothing
10              
11 1     1   7 use Moose;
  1         2  
  1         9  
12             extends 'Code::Statistics::Target';
13              
14              
15 8     8 1 19 sub find_targets {}
16              
17             1;
18              
19             __END__
20             =pod
21              
22             =head1 NAME
23              
24             Code::Statistics::Target::nop - represents nothing
25              
26             =head1 VERSION
27              
28             version 1.112980
29              
30             =head2 find_targets
31             Returns nothing.
32              
33             =head1 AUTHOR
34              
35             Christian Walde <mithaldu@yahoo.de>
36              
37             =head1 COPYRIGHT AND LICENSE
38              
39             This software is Copyright (c) 2010 by Christian Walde.
40              
41             This is free software, licensed under:
42              
43             DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE, Version 2, December 2004
44              
45             =cut
46