File Coverage

blib/lib/Acme/Lingua/Strine/Perl.pm
Criterion Covered Total %
statement 26 26 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 30 30 100.0


line stmt bran cond sub pod time code
1             package Acme::Lingua::Strine::Perl;
2              
3             require 5.005_62;
4 1     1   5917 use strict;
  1         2  
  1         37  
5 1     1   6 use warnings;
  1         2  
  1         78  
6              
7             require Exporter;
8 1     1   861 use AutoLoader qw(AUTOLOAD);
  1         1436  
  1         5  
9              
10             our @ISA = qw(Exporter);
11              
12             our $VERSION = '0.54';
13              
14             use Filter::Simple sub
15             {
16 1         1952 s/(\W)cadge/$1shift/g;
17 1         11 s/(\W)spit the dummy/$1die/g;
18 1         11 s/(\W)celador/$1\$_/g;
19              
20 1         20 s/(\W)bangers and mash/$1\$%/g;
21 1         5 s/(\W)boast/$1print/g;
22 1         6 s/(\W)shite/$1print/g;
23 1         11 s/(\W)jeer/$1print/g;
24 1         14 s/(\W)chyachk/$1warn/g;
25 1         26 s/(\W)jack up/$1/g;
26 1         14 s/(\W)nick off/$1exit/g;
27 1         9 s/(\W)pash/$1uc/g;
28 1         14 s/(\W)rack off/$1return/g;
29 1         7 s/(\W)squib/$1lc/g;
30 1         16 s/(\W)suss/$1study/g;
31             #s/(\W)fossick\s*\(.+=?\)/$1m\/$2\//g;
32              
33            
34            
35 1     1   4465 };
  1         39010  
  1         15  
36              
37              
38              
39             1;
40             __END__