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   1015 use Devel::CheckOS;
  5         17  
  5         244  
4 5     5   30 use strict;
  5         14  
  5         109  
5 5     5   27 use warnings;
  5         11  
  5         165  
6 5     5   28 no warnings 'redefine';
  5         22  
  5         641  
7              
8             our $VERSION = '1.0';
9              
10              
11 7 100   7   83 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 2023 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;