File Coverage

blib/lib/Bubblegum/Object/Instance.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: Generic Container Class for Passing Data
2             package Bubblegum::Object::Instance;
3              
4 37     37   19840 use 5.10.0;
  37         107  
  37         1485  
5 37     37   633 use Bubblegum::Class;
  37         54  
  37         250  
6              
7             our @ISA = (); # non-object
8              
9             our $VERSION = '0.45'; # VERSION
10              
11             has 'data' => (
12             is => 'ro'
13             );
14              
15             1;
16              
17             __END__