File Coverage

blib/lib/Devel/AssertOS/Unix.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 0 3 0.0
total 22 25 88.0


line stmt bran cond sub pod time code
1             package Devel::AssertOS::Unix;
2              
3 5     5   751 use Devel::CheckOS;
  5         13  
  5         263  
4 5     5   28 use strict;
  5         11  
  5         111  
5 5     5   22 use warnings;
  5         11  
  5         186  
6 5     5   25 no warnings 'redefine';
  5         11  
  5         879  
7              
8             our $VERSION = '1.6';
9              
10             # list of OSes originally lifted from Module::Build 0.2808
11             #
12             sub matches {
13 11     11 0 123 return qw(
14             AIX Android Bitrig BSDOS DGUX DragonflyBSD Dynix FreeBSD HPUX Hurd
15             Interix iOS Irix Linux MachTen MacOSX Minix MirOSBSD NetBSD OpenBSD OSF
16             QNX SCO Solaris SunOS SysVr4 SysVr5 Unicos MidnightBSD
17             );
18             }
19 9     9 0 29 sub os_is { Devel::CheckOS::os_is(matches()); }
20             Devel::CheckOS::die_unsupported() unless(os_is());
21              
22             sub expn {
23 1     1 0 87 join("\n",
24             "The OS supports multiple concurrent users, devices are represented as",
25             "pseudo-files in /dev, there is a single root to the filesystem, users",
26             "are protected from interference from other users, and the API is POSIXy.",
27             "It should be reasonably easy to port a simple text-mode C program",
28             "between Unixes.\n",
29             "In some cases (eg Android, iOS) this might not be obvious or be exposed",
30             "to users."
31             )
32             }
33              
34             =head1 COPYRIGHT and LICENCE
35              
36             Copyright 2007 - 2014 David Cantrell
37              
38             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.
39              
40             =cut
41              
42             1;