File Coverage

blib/lib/Devel/AssertOS/RISCOS.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::RISCOS;
2              
3 3     3   1015 use Devel::CheckOS;
  3         17  
  3         137  
4 3     3   16 use strict;
  3         6  
  3         70  
5 3     3   15 use warnings;
  3         6  
  3         83  
6 3     3   15 no warnings 'redefine';
  3         7  
  3         395  
7              
8             our $VERSION = '1.2';
9              
10 3 100   3   38 sub os_is { $^O =~ /^riscos$/i ? 1 : 0; }
11              
12 1     1   80 sub expn { "This is the Acorn operating system, not the MIPS RISC/os system" }
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;