File Coverage

blib/lib/Acme/MetaSyntactic/iata.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


}g; },
line stmt bran cond sub pod time code
1             package Acme::MetaSyntactic::iata;
2 1     1   124611 use strict;
  1         7  
  1         40  
3 1     1   6 use Acme::MetaSyntactic::List;
  1         2  
  1         159  
4             our @ISA = qw( Acme::MetaSyntactic::List );
5             our $VERSION = '1.006';
6             __PACKAGE__->init();
7              
8             our %Remote = (
9             source => [
10             map [ 'http://www.avcodes.co.uk/aptlistres.asp' => "iataaptlst=$_" ],
11             'A' .. 'Z'
12             ],
13             extract => sub { $_[0] =~ m{
(\w+)
14             );
15              
16             1;
17              
18             =head1 NAME
19              
20             Acme::MetaSyntactic::iata - IATA airport codes
21              
22             =head1 DESCRIPTION
23              
24             The three letter IATA codes for airports.
25              
26             =head1 CONTRIBUTORS
27              
28             Abigail, Philippe Bruhat (BooK)
29              
30             =head1 CHANGES
31              
32             =over 4
33              
34             =item *
35              
36             2019-10-28 - v1.006
37              
38             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.054.
39              
40             =item *
41              
42             2019-07-29 - v1.005
43              
44             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.053.
45              
46             =item *
47              
48             2018-10-29 - v1.004
49              
50             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.052.
51              
52             =item *
53              
54             2017-11-13 - v1.003
55              
56             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.051.
57              
58             =item *
59              
60             2017-06-12 - v1.002
61              
62             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.050.
63              
64             =item *
65              
66             2013-12-09 - v1.001
67              
68             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.038.
69              
70             =item *
71              
72             2012-07-02 - v1.000
73              
74             Updated with a remote source that doubled the number of airport codes,
75             and published in Acme-MetaSyntactic-Themes version 1.008.
76              
77             =item *
78              
79             2005-11-11
80              
81             Submitted by Abigail.
82              
83             =back
84              
85             =head1 SEE ALSO
86              
87             L, L.
88              
89             =cut
90              
91             __DATA__