File Coverage

/tmp/.liveman/perl-aion-spirit!aion!spirit/N.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 10 11 90.9


line stmt bran cond sub pod time code
1             package N;
2              
3 1     1   1865 use Aion::Spirit qw/aroundsub/;
  1         7  
  1         62  
4              
5 1     1   5 use constant z_2 => 10;
  1         1  
  1         201  
6              
7             aroundsub qr/_2$/, sub { shift->(@_[1..$#_]) + .03 };
8              
9             sub x_1() { 1 }
10             sub x_2() { 2 }
11 1     1 0 1048 sub y_1($) { 1+shift }
12             sub y_2($) { 2+shift }
13              
14             1;