File Coverage

testdir/good_makefile/Makefile.PL
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1 1     1   23 use ExtUtils::MakeMaker;
  1     1   10  
  1         590  
  1         25  
  1         10  
  1         396  
2              
3             WriteMakefile (
4             'NORECURS' => 1,
5             'NO_META' => 1,
6             'NO_MYMETA' => 1,
7              
8             'NAME' => 'Test::Prereq',
9             'VERSION' => '0.05',
10              
11             'CONFIGURE_REQUIRES' => {
12             'Test::Manifest' => '0',
13             },
14            
15             'BUILD_REQUIRES' => {
16             'Test::Output' => '0',
17             },
18              
19             'PREREQ_PM' => {
20             'HTTP::Size' => '0',
21             'XML::Twig' => '0',
22             },
23              
24             'PM' => {
25             'lib/Prereq.pm' => '$(INST_LIBDIR)/Prereq.pm',
26             },
27              
28             depend => { Makefile => 't/test_manifest' },
29             test => { TESTS => $tests },
30             );
31              
32             1;