File Coverage

blib/lib/Data/Object/Role/Undef.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 9 10 90.0


line stmt bran cond sub pod time code
1             # ABSTRACT: Undef Object Role for Perl 5
2             package Data::Object::Role::Undef;
3              
4 17     17   70354 use 5.010;
  17         56  
5 17     17   3491 use Data::Object::Role;
  17         36  
  17         134  
6              
7             map with($_), our @ROLES = qw(
8             Data::Object::Role::Detract
9             Data::Object::Role::Output
10             Data::Object::Role::Type
11             );
12              
13             our $VERSION = '0.42'; # VERSION
14              
15             sub defined {
16 2     2 0 4 return 0;
17             }
18              
19             1;
20              
21             __END__