File Coverage

blib/arch/common/sense.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 5 5 100.0


line stmt bran cond sub pod time code
1             package common::sense;
2              
3             our $VERSION = 3.73;
4              
5             # overload should be included
6              
7             sub import {
8 6     6   10651 local $^W; # work around perl 5.16 spewing out warnings for next statement
9             # use warnings
10 6         29 ${^WARNING_BITS} ^= ${^WARNING_BITS} ^ "\x0c\x3f\x33\x00\x0f\xf0\x0f\xc0\xf0\xfc\x33\x00\x00\x00\xc0";
11             # use strict, use utf8; use feature;
12 6         10 $^H |= 0x1c820fc0;
13 6         4127 @^H{qw(feature___SUB__ feature_fc feature_unicode feature_state feature_say feature_switch feature_evalbytes)} = (1) x 7;
14             }
15              
16             1