File Coverage

blib/lib/Bubblegum/Object/Instance.pm
Criterion Covered Total %
statement 4 6 66.6
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 8 75.0


line stmt bran cond sub pod time code
1             # ABSTRACT: Generic Container Class for Passing Data
2             package Bubblegum::Object::Instance;
3              
4 1     1   670 use 5.10.0;
  1         3  
  1         52  
5 1     1   385 use Bubblegum::Class;
  0            
  0            
6              
7             our @ISA = (); # non-object
8              
9             our $VERSION = '0.44'; # VERSION
10              
11             has 'data' => (
12             is => 'ro'
13             );
14              
15             1;
16              
17             __END__