File Coverage

blib/lib/Devel/AssertOS/MachTen.pm
Criterion Covered Total %
statement 14 14 100.0
branch 2 2 100.0
condition n/a
subroutine 6 6 100.0
pod n/a
total 22 22 100.0


line stmt bran cond sub pod time code
1             package Devel::AssertOS::MachTen;
2              
3 6     6   770 use Devel::CheckOS;
  6         11  
  6         265  
4 6     6   35 use strict;
  6         19  
  6         132  
5 6     6   26 use warnings;
  6         10  
  6         169  
6 6     6   24 no warnings 'redefine';
  6         11  
  6         744  
7              
8             our $VERSION = '1.2';
9              
10 8 100   8   82 sub os_is { $^O =~ /^machten$/i ? 1 : 0; }
11              
12             sub expn {
13 1     1   69 join("\n",
14             "You're using the Mach Ten BSD-compatible environment on top of",
15             "Mac OS 'Classic' - ie, a pre-OS-X version of Mac OS.",
16             )
17             }
18              
19             Devel::CheckOS::die_unsupported() unless(os_is());
20              
21             =head1 COPYRIGHT and LICENCE
22              
23             Copyright 2007 - 2014 David Cantrell
24              
25             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.
26              
27             =cut
28              
29             1;