File Coverage

blib/lib/Acme/MetaSyntactic/moonwalkers.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Acme::MetaSyntactic::moonwalkers;
2              
3 1     1   110083 use strict;
  1         5  
  1         43  
4 1     1   7 use warnings;
  1         3  
  1         60  
5 1     1   8 no warnings 'syntax';
  1         2  
  1         48  
6              
7 1     1   6 use Acme::MetaSyntactic::List;
  1         2  
  1         268  
8             our @ISA = qw [Acme::MetaSyntactic::List];
9              
10             our $VERSION = '2013072602';
11              
12             =head1 NAME
13              
14             Acme::MetaSyntactic::moonwalkers - People who have walked on the moon.
15              
16             =head1 DESCRIPTION
17              
18             Between 1969 and 1972, the United States send six manned missions to
19             the moon. Twelve people have walked on the moon.
20              
21             =head2 Moonwalkers
22              
23             The following people have walked on the moon:
24              
25             =cut
26              
27             __PACKAGE__ -> init ({
28             names => join ' ',
29             map {s/__+/_/g; $_}
30             map {Acme::MetaSyntactic::RemoteList::tr_nonword ($_)}
31             map {Acme::MetaSyntactic::RemoteList::tr_accent ($_)}
32             map {/^\s+(\S+\s+(?:\w\.\s+)?\S+)/ ? $1 : ()}
33             split /\n/ => <<'=cut' });
34              
35             =pod
36              
37             Neil Armstrong Apollo 11 July 21, 1969
38             Buzz Aldrin
39              
40             Pete Conrad Apollo 12 November 19 & 20, 1969
41             Alan Bean
42              
43             Alan Shepard Apollo 14 February 5 & 6, 1971
44             Edgar Mitchell
45              
46             David Scott Apollo 15 July 31, August 1 & 2, 1971
47             James Irwin
48              
49             John W. Young Apollo 16 April 21, 22 & 23, 1972
50             Charles Duke
51              
52             Eugene Cernan Apollo 17 December 12, 13 & 14, 1972
53             Harrison Schmitt
54              
55             =cut
56              
57             =pod
58              
59             This module is part of the set of C<< Acme::MetaSyntactic >> themes
60             found in the C<< Acme::MetaSyntactic::Themes::Abigail >> package.
61              
62             =head1 NOTES
63              
64             =head1 SEE ALSO
65              
66             L.
67              
68             =head1 AUTHOR
69              
70             Abigail, L<< mailto:cpan@abigail.be >>.
71              
72             =head1 COPYRIGHT and LICENSE
73              
74             Copyright (C) 2013 by Abigail.
75              
76             Permission is hereby granted, free of charge, to any person obtaining a
77             copy of this software and associated documentation files (the "Software"),
78             to deal in the Software without restriction, including without limitation
79             the rights to use, copy, modify, merge, publish, distribute, sublicense,
80             and/or sell copies of the Software, and to permit persons to whom the
81             Software is furnished to do so, subject to the following conditions:
82              
83             The above copyright notice and this permission notice shall be included
84             in all copies or substantial portions of the Software.
85              
86             THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
87             IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
88             FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
89             THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90             WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
91             OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
92             THE SOFTWARE.
93              
94              
95             =cut