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   88437 use strict;
  1         8  
  1         46  
3 1     1   13 use Acme::MetaSyntactic::List;
  1         8  
  1         213  
4             our @ISA = qw( Acme::MetaSyntactic::List );
5             our $VERSION = '1.005';
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-07-29 - v1.005
37              
38             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.053.
39              
40             =item *
41              
42             2018-10-29 - v1.004
43              
44             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.052.
45              
46             =item *
47              
48             2017-11-13 - v1.003
49              
50             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.051.
51              
52             =item *
53              
54             2017-06-12 - v1.002
55              
56             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.050.
57              
58             =item *
59              
60             2013-12-09 - v1.001
61              
62             Updated from the source web site in Acme-MetaSyntactic-Themes version 1.038.
63              
64             =item *
65              
66             2012-07-02 - v1.000
67              
68             Updated with a remote source that doubled the number of airport codes,
69             and published in Acme-MetaSyntactic-Themes version 1.008.
70              
71             =item *
72              
73             2005-11-11
74              
75             Submitted by Abigail.
76              
77             =back
78              
79             =head1 SEE ALSO
80              
81             L, L.
82              
83             =cut
84              
85             __DATA__