File Coverage

Makefile.PL
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1 1     1   5 use strict;
  1         2  
  1         33  
2 1     1   4 use warnings;
  1         2  
  1         31  
3 1     1   5 use ExtUtils::MakeMaker;
  1         3  
  1         595  
4            
5             WriteMakefile(
6             NAME => 'Test::LatestPrereqs',
7             AUTHOR => 'Kenichi Ishigaki ',
8             VERSION_FROM => 'lib/Test/LatestPrereqs.pm',
9             ABSTRACT_FROM => 'lib/Test/LatestPrereqs.pm',
10             PREREQ_PM => {
11             'Class::Inspector' => 0,
12             'CPAN::Version' => 0,
13             'File::Find::Rule' => 0,
14             'File::Spec' => 0,
15             'Test::More' => '0.47',
16             'Test::UseAllModules' => '0.11',
17             },
18             EXE_FILES => ['bin/test_prereqs_version'],
19             ($ExtUtils::MakeMaker::VERSION >= 6.31
20             ? ( LICENSE => 'perl' )
21             : ()
22             ),
23             );