File Coverage

lib/Ubic/ServiceLoader/Base.pm
Criterion Covered Total %
statement 6 8 75.0
branch n/a
condition n/a
subroutine 2 4 50.0
pod 2 2 100.0
total 10 14 71.4


line stmt bran cond sub pod time code
1             package Ubic::ServiceLoader::Base;
2             $Ubic::ServiceLoader::Base::VERSION = '1.59';
3             # ABSTRACT: abstract base class for service loaders
4              
5 23     23   5812 use strict;
  23         40  
  23         510  
6 23     23   72 use warnings;
  23         25  
  23         1089  
7              
8             sub new {
9 0     0 1   die "not implemented";
10             }
11              
12             sub load {
13 0     0 1   die "not implemented";
14             }
15              
16              
17             1;
18              
19             __END__