File Coverage

lib/Perl/Builtins.pm
Criterion Covered Total %
statement 13 13 100.0
branch 2 2 100.0
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 20 21 95.2


line stmt bran cond sub pod time code
1             package Perl::Builtins;
2             $Perl::Builtins::VERSION = '0.04';
3 1     1   19130 use 5.008;
  1         3  
  1         44  
4 1     1   7 use strict;
  1         2  
  1         57  
5 1     1   6 use warnings;
  1         7  
  1         50  
6 1     1   749 use Pod::Functions '%Type';
  1         2567  
  1         173  
7              
8             #ABSTRACT: A list of all Perl 5 built functions
9              
10              
11 2 100   2 0 167 sub list { wantarray ? keys %Type : [ keys %Type ] }
12              
13             1;
14              
15             __END__