File Coverage

blib/lib/Bubblegum/Object/Undef.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1             # ABSTRACT: Common Methods for Operating on Undefined Values
2             package Bubblegum::Object::Undef;
3              
4 36     36   19516 use 5.10.0;
  36         101  
  36         1335  
5 36     36   150 use namespace::autoclean;
  36         39  
  36         233  
6              
7 36     36   7941 use Bubblegum::Class 'with';
  36         51  
  36         164  
8              
9             with 'Bubblegum::Object::Role::Item';
10             with 'Bubblegum::Object::Role::Coercive';
11              
12             our @ISA = (); # non-object
13              
14             our $VERSION = '0.45'; # VERSION
15              
16             sub defined {
17 1     1 1 2432 return 0
18             }
19              
20             1;
21              
22             __END__