| blib/lib/Data/Object/Role/Integer.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 6 | 6 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 2 | 2 | 100.0 |
| pod | n/a | ||
| total | 8 | 8 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | # ABSTRACT: An Integer Object Role for Perl 5 | ||||||
| 2 | package Data::Object::Role::Integer; | ||||||
| 3 | |||||||
| 4 | 15 | 15 | 13883 | use 5.010; | |||
| 15 | 101 | ||||||
| 15 | 578 | ||||||
| 5 | 15 | 15 | 365 | use Data::Object::Role; | |||
| 15 | 25 | ||||||
| 15 | 137 | ||||||
| 6 | |||||||
| 7 | map with($_), our @ROLES = qw( | ||||||
| 8 | Data::Object::Role::Defined | ||||||
| 9 | Data::Object::Role::Detract | ||||||
| 10 | Data::Object::Role::Numeric | ||||||
| 11 | Data::Object::Role::Output | ||||||
| 12 | Data::Object::Role::Type | ||||||
| 13 | ); | ||||||
| 14 | |||||||
| 15 | our $VERSION = '0.20'; # VERSION | ||||||
| 16 | |||||||
| 17 | 1; | ||||||
| 18 | |||||||
| 19 | __END__ |