File Coverage

blib/lib/Perl/Builtins.pm
Criterion Covered Total %
statement 10 10 100.0
branch 2 2 100.0
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 16 17 94.1


line stmt bran cond sub pod time code
1 1     1   16232 use 5.008;
  1         3  
  1         30  
2 1     1   3 use warnings;
  1         1  
  1         47  
3             package Perl::Builtins;
4             $Perl::Builtins::VERSION = '0.02';
5 1     1   490 use Pod::Functions '%Type';
  1         2441  
  1         140  
6              
7             #ABSTRACT: A list of all Perl 5 built functions
8              
9              
10 2 100   2 0 163 sub list { wantarray ? keys %Type : [ keys %Type ] }
11              
12             1;
13              
14             __END__