blib/lib/RPerl/Test/Bar.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 | 1 | 1 | 7 | use RPerl; | |||
1 | 3 | ||||||
1 | 8 | ||||||
2 | package RPerl::Test::Bar; | ||||||
3 | use strict; | ||||||
4 | 1 | 1 | 79 | use warnings; | |||
1 | 2 | ||||||
1 | 286 | ||||||
5 | 1 | 1 | 8 | our $VERSION = 0.001_000; | |||
1 | 11 | ||||||
1 | 197 | ||||||
6 | 1 | 1 | 7 | ||||
1 | 15 | ||||||
1 | 27 | ||||||
7 | 1 | 1 | 7 | ## no critic qw(ProhibitUselessNoCritic ProhibitMagicNumbers RequireCheckedSyscalls) # USER DEFAULT 1: allow numeric values & print operator | |||
1 | 3 | ||||||
1 | 117 | ||||||
8 | |||||||
9 | our void $empty_sub = sub { | ||||||
10 | print 'I am empty.' . "\n"; | ||||||
11 | }; | ||||||
12 | |||||||
13 | 1; # end of package |