File Coverage

blib/lib/HiPi/Interface/HTBackpackV2.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::HTBackpackV2
3             # Description: compatibility
4             # Copyright : Copyright (c) 2013-2017 Mark Dootson
5             # License : This is free software; you can redistribute it and/or modify it under
6             # the same terms as the Perl 5 programming language system itself.
7             #########################################################################################
8            
9             package HiPi::Interface::HTBackpackV2;
10            
11             #########################################################################################
12 1     1   1141 use strict;
  1         3  
  1         27  
13 1     1   6 use warnings;
  1         2  
  1         28  
14            
15 1     1   5 use parent qw( HiPi::Interface::HobbyTronicsBackpackV2 );
  1         2  
  1         6  
16            
17             our $VERSION = '0.59';
18            
19             sub new {
20 0     0 0   my $class = shift;
21 0           my $self = $class->SUPER::new( @_ );
22 0           return $self;
23             }
24            
25             1;
26            
27             __END__