File Coverage

blib/lib/HiPi/Interface/ENER002.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::ENER002
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::ENER002;
10              
11             #########################################################################################
12              
13 1     1   1218 use strict;
  1         2  
  1         30  
14 1     1   5 use warnings;
  1         2  
  1         34  
15              
16 1     1   4 use parent qw( HiPi::Interface::EnergenieSwitch );
  1         2  
  1         6  
17              
18             our $VERSION = '0.59';
19              
20             sub new {
21 0     0 0   my $class = shift;
22 0           my $self = $class->SUPER::new( @_ );
23 0           return $self;
24             }
25              
26             1;
27              
28             __END__