File Coverage

blib/lib/Devel/AssertOS/Linux/Slackware.pm
Criterion Covered Total %
statement 17 18 94.4
branch 1 2 50.0
condition 1 3 33.3
subroutine 6 7 85.7
pod n/a
total 25 30 83.3


line stmt bran cond sub pod time code
1             package Devel::AssertOS::Linux::Slackware;
2              
3 1     1   6 use Devel::CheckOS;
  1         1  
  1         50  
4 1     1   4 use strict;
  1         1  
  1         17  
5 1     1   3 use warnings;
  1         1  
  1         48  
6              
7 1     1   4 use Devel::CheckOS::Helpers::LinuxOSrelease 'distributor_id';
  1         1  
  1         41  
8              
9 1     1   4 no warnings 'redefine';
  1         2  
  1         175  
10              
11             our $VERSION = '1.0';
12              
13             sub os_is {
14 1     1   4 my $id = distributor_id;
15 1 50 33     3 Devel::CheckOS::os_is('Linux') && defined($id) && $id eq 'slackware';
16             }
17              
18 0     0     sub expn { 'The operating system is Slackware. Praise "Bob"!' }
19              
20             Devel::CheckOS::die_unsupported() unless ( os_is() );
21              
22             =head1 COPYRIGHT and LICENCE
23              
24             Copyright 2024 David Cantrell
25              
26             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.
27              
28             =cut
29              
30             1;
31