File Coverage

blib/lib/Address/PostCode/India/Place.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Address::PostCode::India::Place;
2              
3             $Address::PostCode::India::Place::VERSION = '0.13';
4             $Address::PostCode::India::Place::AUTHORITY = 'cpan:MANWAR';
5              
6             =head1 NAME
7              
8             Address::PostCode::India::Place - Placeholder for 'place' for Address::PostCode::India.
9              
10             =head1 VERSION
11              
12             Version 0.13
13              
14             =cut
15              
16 4     4   85 use 5.006;
  4         18  
17 4     4   36 use Data::Dumper;
  4         10  
  4         194  
18              
19 4     4   30 use Moo;
  4         9  
  4         24  
20 4     4   1299 use namespace::autoclean;
  4         24  
  4         28  
21              
22             has 'pincode' => (is => 'ro');
23             has 'city' => (is => 'ro');
24             has 'district' => (is => 'ro');
25             has 'state' => (is => 'ro');
26              
27             =head1 METHODS
28              
29             =head2 pincode()
30              
31             =head2 city()
32              
33             =head2 district()
34              
35             =head2 state()
36              
37             =head1 AUTHOR
38              
39             Mohammad S Anwar, C<< >>
40              
41             =head1 REPOSITORY
42              
43             L
44              
45             =head1 BUGS
46              
47             Please report any bugs or feature requests to C,
48             or through the web interface at L.
49             I will be notified, and then you'll automatically be notified of progress on your
50             bug as I make changes.
51              
52             =head1 SUPPORT
53              
54             You can find documentation for this module with the perldoc command.
55              
56             perldoc Address::PostCode::India::Place
57              
58             You can also look for information at:
59              
60             =over 4
61              
62             =item * RT: CPAN's request tracker (report bugs here)
63              
64             L
65              
66             =item * AnnoCPAN: Annotated CPAN documentation
67              
68             L
69              
70             =item * CPAN Ratings
71              
72             L
73              
74             =item * Search CPAN
75              
76             L
77              
78             =back
79              
80             =head1 LICENSE AND COPYRIGHT
81              
82             Copyright (C) 2014 - 2015 Mohammad S Anwar.
83              
84             This program is free software; you can redistribute it and / or modify it under
85             the terms of the the Artistic License (2.0). You may obtain a copy of the full
86             license at:
87              
88             L
89              
90             Any use, modification, and distribution of the Standard or Modified Versions is
91             governed by this Artistic License.By using, modifying or distributing the Package,
92             you accept this license. Do not use, modify, or distribute the Package, if you do
93             not accept this license.
94              
95             If your Modified Version has been derived from a Modified Version made by someone
96             other than you,you are nevertheless required to ensure that your Modified Version
97             complies with the requirements of this license.
98              
99             This license does not grant you the right to use any trademark, service mark,
100             tradename, or logo of the Copyright Holder.
101              
102             This license includes the non-exclusive, worldwide, free-of-charge patent license
103             to make, have made, use, offer to sell, sell, import and otherwise transfer the
104             Package with respect to any patent claims licensable by the Copyright Holder that
105             are necessarily infringed by the Package. If you institute patent litigation
106             (including a cross-claim or counterclaim) against any party alleging that the
107             Package constitutes direct or contributory patent infringement,then this Artistic
108             License to you shall terminate on the date that such litigation is filed.
109              
110             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND
111             CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
112             WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
113             NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS
114             REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT,
115             INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE
116             OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
117              
118             =cut
119              
120             1; # End of Address::PostCode::India::Place