File Coverage

blib/lib/Devel/AssertOS/HPUX.pm
Criterion Covered Total %
statement 13 13 100.0
branch 2 2 100.0
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Devel::AssertOS::HPUX;
2              
3 7     7   1007 use Devel::CheckOS;
  7         17  
  7         351  
4 7     7   40 use strict;
  7         13  
  7         149  
5 7     7   36 use warnings;
  7         13  
  7         272  
6 7     7   37 no warnings 'redefine';
  7         13  
  7         850  
7              
8             our $VERSION = '1.2';
9              
10 9 100   9   107 sub os_is { $^O =~ /^hpux$/i ? 1 : 0; }
11              
12             Devel::CheckOS::die_unsupported() unless(os_is());
13              
14             =head1 COPYRIGHT and LICENCE
15              
16             Copyright 2007 - 2014 David Cantrell
17              
18             This software is free-as-in-speech software, and may be used, distributed, and modified under the terms of either the GNU General Public Licence version 2 or the Artistic Licence. It's up to you which one you use. The full text of the licences can be found in the files GPL2.txt and ARTISTIC.txt, respectively.
19              
20             =cut
21              
22             1;