File Coverage

blib/lib/Devel/AssertOS/Linux/Devuan.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::Devuan;
2              
3 3     3   23 use Devel::CheckOS;
  3         6  
  3         237  
4 3     3   20 use strict;
  3         6  
  3         84  
5 3     3   15 use warnings;
  3         8  
  3         214  
6 3     3   16 no warnings 'redefine';
  3         6  
  3         141  
7              
8 3     3   15 use Devel::CheckOS::Helpers::LinuxOSrelease 'distributor_id';
  3         7  
  3         524  
9              
10             our $VERSION = '1.1';
11              
12             sub os_is {
13 10     10   51 my $id = distributor_id;
14              
15 10 50 33     51 Devel::CheckOS::os_is('Linux') &&
16             defined($id) &&
17             $id eq 'devuan';
18             }
19              
20 0     0     sub expn { "The operating system is Devuan" }
21              
22             Devel::CheckOS::die_unsupported() unless(os_is());
23              
24             =head1 COPYRIGHT and LICENCE
25              
26             Copyright 2024 David Cantrell
27              
28             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.
29              
30             =cut
31              
32             1;
33