File Coverage

blib/lib/HiPi/Interface/HTADCI2C.pm
Criterion Covered Total %
statement 9 12 75.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 17 70.5


line stmt bran cond sub pod time code
1             #########################################################################################
2             # Package HiPi::Interface::HTADCI2C
3             # Description: compatibi9lty
4             # Created Sun Dec 02 01:42:27 2012
5             # Copyright : Copyright (c) 2013-2017 Mark Dootson
6             # License : This is free software; you can redistribute it and/or modify it under
7             # the same terms as the Perl 5 programming language system itself.
8             #########################################################################################
9            
10             package HiPi::Interface::HTADCI2C;
11            
12             #########################################################################################
13            
14 1     1   1294 use strict;
  1         3  
  1         31  
15 1     1   6 use warnings;
  1         3  
  1         33  
16            
17 1     1   5 use parent qw( HiPi::Interface::HobbyTronicsADC );
  1         3  
  1         6  
18            
19             our $VERSION = '0.59';
20            
21             sub new {
22 0     0 0   my $class = shift;
23 0           my $self = $class->SUPER::new( @_ );
24 0           return $self;
25             }
26            
27             1;
28            
29             __END__