File Coverage

blib/lib/Data/Object/Role/Integer.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 7 7 100.0


line stmt bran cond sub pod time code
1             # ABSTRACT: Integer Object Role for Perl 5
2             package Data::Object::Role::Integer;
3              
4 15     15   17929 use 5.010;
  15         78  
5 15     15   544 use Data::Object::Role;
  15         28  
  15         131  
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.42'; # VERSION
16              
17             1;
18              
19             __END__