File Coverage

blib/lib/Devel/AssertOS/Linux/v2_6.pm
Criterion Covered Total %
statement 14 14 100.0
branch 1 2 50.0
condition 1 3 33.3
subroutine 6 6 100.0
pod n/a
total 22 25 88.0


line stmt bran cond sub pod time code
1             # $Id: v2_6.pm,v 1.4 2008/11/05 22:52:35 drhyde Exp $
2              
3             package Devel::AssertOS::Linux::v2_6;
4              
5 1     1   6 use Devel::CheckOS;
  1         2  
  1         79  
6 1     1   5 use strict;
  1         2  
  1         39  
7 1     1   5 use warnings;
  1         2  
  1         58  
8 1     1   6 no warnings 'redefine';
  1         1  
  1         167  
9              
10             our $VERSION = '1.3';
11              
12             sub os_is {
13 1 50 33 1   8 Devel::CheckOS::os_is('Linux') &&
14             `uname -r` =~ /^2\.6\./ ? 1 : 0;
15             }
16              
17 1     1   157 sub expn { "The operating system has a Linux 2.6.x series kernel" }
18              
19             Devel::CheckOS::die_unsupported() unless(os_is());
20              
21             =head1 COPYRIGHT and LICENCE
22              
23             Copyright 2007 - 2008 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;