File Coverage

blib/lib/Pixie/Object.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 2 0.0
total 11 13 84.6


line stmt bran cond sub pod time code
1             package Pixie::Object;
2              
3 16     16   106 use strict;
  16         48  
  16         1900  
4              
5             our $VERSION="2.06";
6              
7             sub new {
8 73     73 0 21725 my $proto = shift;
9 73         206 my $self = bless {}, $proto;
10 73         351 $self->init;
11 73         451 return $self;
12             }
13              
14 25     25 0 64 sub init { $_[0]; }
15              
16             1;