File Coverage

blib/lib/Acme/MetaSyntactic/errno.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Acme::MetaSyntactic::errno;
2 1     1   6292 use strict;
  1         4  
  1         49  
3 1     1   958 use Acme::MetaSyntactic::MultiList;
  1         3983  
  1         53  
4             our @ISA = qw( Acme::MetaSyntactic::MultiList );
5             our $VERSION = '1.003';
6              
7 1     1   20 use Errno ();
  1         3  
  1         85  
8              
9             __PACKAGE__->init(
10             { default => 'PERL',
11             names => {
12             POSIX => join( ' ', @{ $Errno::EXPORT_TAGS{POSIX} } ),
13             PERL => join( ' ', keys %! ),
14             },
15             }
16             );
17              
18             1;
19              
20             =head1 NAME
21              
22             Acme::MetaSyntactic::errno - The errno theme
23              
24             =head1 DESCRIPTION
25              
26             The name of all errors known to Perl via the system F.
27              
28             The official POSIX error list is available at
29             L.
30              
31             =head1 CONTRIBUTOR
32              
33             Philippe Bruhat (BooK)
34              
35             =head1 CHANGES
36              
37             =over 4
38              
39             =item *
40              
41             2013-05-13 - v1.003
42              
43             New release without any code change. (Just a F change.)
44              
45             =item *
46              
47             2012-07-23 - v1.002
48              
49             Fix in the documentation CHANGES section.
50              
51             =item *
52              
53             2012-07-13 - v1.001
54              
55             Added a LICENSE section, to please CPANTS.
56              
57             =item *
58              
59             2012-06-21 - v1.000
60              
61             Published as part of the Booking.com Hackathon.
62              
63             =back
64              
65             =head1 SEE ALSO
66              
67             L,
68             L, L.
69              
70             =head1 LICENSE
71              
72             This program is free software; you can redistribute it and/or modify it
73             under the same terms as Perl itself.
74              
75             =cut
76