File Coverage

blib/lib/Test/UsedModules/Constants.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Test::UsedModules::Constants;
2 26     26   128 use strict;
  26         46  
  26         827  
3 26     26   132 use warnings;
  26         47  
  26         789  
4 26     26   123 use utf8;
  26         48  
  26         197  
5 26     26   570 use parent 'Exporter';
  26         41  
  26         183  
6              
7             our @EXPORT = qw/PRAGMAS/;
8              
9 26         2298 use constant PRAGMAS => (
10             'attributes',
11             'autodie',
12             'autouse',
13             'base',
14             'bigint',
15             'bignum',
16             'bigrat',
17             'blib',
18             'bytes',
19             'charnames',
20             'constant',
21             'diagnostics',
22             'encoding',
23             'feature',
24             'fields',
25             'filetest',
26             'if',
27             'integer',
28             'less',
29             'lib',
30             'locale',
31             'mro',
32             'open',
33             'ops',
34             'overload',
35             'overloading',
36             'parent',
37             're',
38             'sigtrap',
39             'sort',
40             'strict',
41             'subs',
42             'threads',
43             'threads::shared',
44             'utf8',
45             'vars',
46             'vmsish',
47             'warnings',
48             'warnings::register',
49 26     26   3448 );
  26         40  
50             1;