File Coverage

blib/lib/Devel/AssertOS/DEC.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 22 22 100.0


line stmt bran cond sub pod time code
1             package Devel::AssertOS::DEC;
2              
3 3     3   90 use Devel::CheckOS;
  3         9  
  3         185  
4 3     3   20 use strict;
  3         6  
  3         140  
5 3     3   17 use warnings;
  3         7  
  3         222  
6 3     3   21 no warnings 'redefine';
  3         5  
  3         764  
7              
8             our $VERSION = '1.4';
9              
10 5     5   46 sub matches { return qw(OSF VMS); }
11 3     3   10 sub os_is { Devel::CheckOS::os_is(matches()); }
12             Devel::CheckOS::die_unsupported() unless(os_is());
13              
14             sub expn {
15 1     1   99 join("\n",
16             "The operating system is from Digital Equipment Corporation, or was",
17             "originally written by DEC before they were taken over by Compaq/HP"
18             )
19             }
20              
21             =head1 COPYRIGHT and LICENCE
22              
23             Copyright 2024 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;