File Coverage

blib/lib/Devel/AssertOS/QNX/Neutrino.pm
Criterion Covered Total %
statement 14 14 100.0
branch 2 2 100.0
condition n/a
subroutine 6 6 100.0
pod n/a
total 22 22 100.0


line stmt bran cond sub pod time code
1             package Devel::AssertOS::QNX::Neutrino;
2              
3 6     6   980 use Devel::CheckOS;
  6         18  
  6         287  
4 6     6   40 use strict;
  6         13  
  6         136  
5 6     6   26 use warnings;
  6         14  
  6         197  
6 6     6   31 no warnings 'redefine';
  6         17  
  6         784  
7              
8             our $VERSION = '1.1';
9              
10 7 100   7   91 sub os_is { $^O =~ /^nto$/i ? 1 : 0; }
11              
12 1     1   93 sub expn { "The operating system is version 6 of QNX, also known as Neutrino" }
13              
14             Devel::CheckOS::die_unsupported() unless(os_is());
15              
16             =head1 COPYRIGHT and LICENCE
17              
18             Copyright 2023 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;