| blib/lib/Acme/Robd/Boring.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 12 | 12 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 6 | 6 | 100.0 |
| pod | 3 | 3 | 100.0 |
| total | 21 | 21 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | 1 | 1 | 826 | use strict; | |||
| 1 | 2 | ||||||
| 1 | 33 | ||||||
| 2 | 1 | 1 | 5 | use warnings; | |||
| 1 | 1 | ||||||
| 1 | 56 | ||||||
| 3 | package Acme::Robd::Boring; | ||||||
| 4 | # ABSTRACT: a really boring module | ||||||
| 5 | |||||||
| 6 | our $VERSION = 0.002; | ||||||
| 7 | |||||||
| 8 | |||||||
| 9 | 1 | 1 | 14 | use Carp qw( carp ); | |||
| 1 | 2 | ||||||
| 1 | 119 | ||||||
| 10 | |||||||
| 11 | |||||||
| 12 | sub new { | ||||||
| 13 | 1 | 1 | 1 | 386 | return bless {}, shift; | ||
| 14 | } | ||||||
| 15 | |||||||
| 16 | |||||||
| 17 | 1 | 1 | 1 | 263 | sub name { __PACKAGE__ } | ||
| 18 | |||||||
| 19 | |||||||
| 20 | 1 | 1 | 1 | 4 | sub version { $VERSION } | ||
| 21 | |||||||
| 22 | 1; | ||||||
| 23 | |||||||
| 24 | __END__ |