File Coverage

blib/lib/Acme/LookOfDisapproval.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 21 22 95.4


line stmt bran cond sub pod time code
1 2     2   139152 use strict;
  2         6  
  2         82  
2 2     2   13 use warnings;
  2         7  
  2         2289  
3 2     2   636 use utf8;
  2         342  
  2         12  
4             package Acme::LookOfDisapproval; # git description: v0.007-16-g8154023
5             # vim: set ts=8 sts=2 sw=2 tw=100 et :
6             # ABSTRACT: Send warnings with ಠ_ಠ
7             # KEYWORDS: unicode canary warning utf8 symbol ಠ_ಠ
8              
9             our $VERSION = '0.008';
10              
11 2     2   151 use Exporter;
  2         31  
  2         365  
12             our @EXPORT = ('ಠ_ಠ');
13              
14             sub import {
15 3     3   20 utf8->import;
16 3         2359 goto &Exporter::import;
17             }
18              
19 2     2 0 1279105 sub ಠ_ಠ { goto &CORE::warn }
20              
21             1;
22              
23             __END__