File Coverage

blib/lib/Mira/Model/Base.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 21 23 91.3


line stmt bran cond sub pod time code
1             package Mira::Model::Base;
2             $Mira::Model::Base::VERSION = '0.07';
3              
4 1     1   1535 use strict;
  1         2  
  1         34  
5 1     1   5 use warnings;
  1         1  
  1         28  
6 1     1   21 use 5.012;
  1         3  
7              
8             sub new {
9 1     1 0 114 my $class = shift;
10 1         3 my $self = {};
11              
12 1         2 bless $self, $class;
13 1         3 return $self;
14             }
15              
16             sub add {
17 2     2 0 25 my $self = shift;
18 2         3 my $utid = shift;
19 2         3 my $values = shift;
20              
21 2         19 $self->{$utid} = $values;
22              
23             }
24              
25             1;