blib/lib/Acme/Robd/Boring.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 11 | 11 | 100.0 |
branch | n/a | ||
condition | n/a | ||
subroutine | 5 | 5 | 100.0 |
pod | 2 | 2 | 100.0 |
total | 18 | 18 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | 1 | 1 | 535 | use strict; | |||
1 | 1 | ||||||
1 | 24 | ||||||
2 | 1 | 1 | 3 | use warnings; | |||
1 | 1 | ||||||
1 | 40 | ||||||
3 | package Acme::Robd::Boring; | ||||||
4 | # ABSTRACT: a really boring module | ||||||
5 | |||||||
6 | |||||||
7 | 1 | 1 | 14 | use Carp qw( carp ); | |||
1 | 1 | ||||||
1 | 71 | ||||||
8 | |||||||
9 | |||||||
10 | sub new { | ||||||
11 | 1 | 1 | 1 | 308 | return bless {}, shift; | ||
12 | } | ||||||
13 | |||||||
14 | |||||||
15 | 1 | 1 | 1 | 205 | sub name { __PACKAGE__ } | ||
16 | |||||||
17 | 1; | ||||||
18 | |||||||
19 | __END__ |