File Coverage

blib/lib/Devel/AssertOS/MacOSX.pm
Criterion Covered Total %
statement 13 14 92.8
branch 2 2 100.0
condition n/a
subroutine 5 6 83.3
pod n/a
total 20 22 90.9


line stmt bran cond sub pod time code
1             package Devel::AssertOS::MacOSX;
2              
3 8     8   977 use Devel::CheckOS;
  8         17  
  8         419  
4 8     8   46 use strict;
  8         17  
  8         178  
5 8     8   36 use warnings;
  8         95  
  8         276  
6 8     8   37 no warnings 'redefine';
  8         18  
  8         1122  
7              
8             our $VERSION = '1.3';
9              
10 10 100   10   108 sub os_is { $^O =~ /^darwin$/i ? 1 : 0; }
11              
12             Devel::CheckOS::die_unsupported() unless(os_is());
13              
14 0     0     sub expn { "Either Mac OS X, or OS X, or MacOS, they're all the same thing really" }
15              
16             =head1 COPYRIGHT and LICENCE
17              
18             Copyright 2007 - 2014 David Cantrell
19              
20             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.
21              
22             =cut
23              
24             1;