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              
3 1     1   895 use strict;
  1         1  
  1         22  
4 1     1   3 use warnings;
  1         0  
  1         17  
5 1     1   13 use 5.012;
  1         1  
6             our $VERSION = $Mira::VERSION;
7              
8             sub new {
9 1     1 0 153 my $class = shift;
10 1         2 my $self = {};
11              
12 1         2 bless $self, $class;
13 1         2 return $self;
14             }
15              
16             sub add {
17 2     2 0 20 my $self = shift;
18 2         2 my $utid = shift;
19 2         3 my $values = shift;
20              
21 2         13 $self->{$utid} = $values;
22              
23             }
24              
25             1;