File Coverage

blib/lib/Devel/AssertOS/Minix.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::Minix;
2              
3 5     5   978 use Devel::CheckOS;
  5         12  
  5         232  
4 5     5   26 use strict;
  5         10  
  5         99  
5 5     5   23 use warnings;
  5         10  
  5         147  
6 5     5   22 no warnings 'redefine';
  5         9  
  5         607  
7              
8             our $VERSION = '1.0';
9              
10              
11 7 100   7   81 sub os_is { ( $^O =~ /^minix$/i) ? 1 : 0; }
12              
13             Devel::CheckOS::die_unsupported() unless(os_is());
14              
15             =head1 COPYRIGHT and LICENCE
16              
17             Copyright 2007 - 2014 David Cantrell
18              
19             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.
20              
21             =cut
22              
23             1;