File Coverage

blib/lib/PGXN/Site/Locale/en.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package PGXN::Site::Locale::en;
2              
3 1     1   1099 use 5.10.0;
  1         4  
4 1     1   6 use utf8;
  1         3  
  1         8  
5 1     1   29 use parent 'PGXN::Site::Locale';
  1         1  
  1         9  
6             our $VERSION = v0.22.1;
7              
8             our %Lexicon = (
9             );
10              
11             1;
12              
13             =head1 Name
14              
15             PGXN::Site::Locale::en - English localization for PGXN::Site
16              
17             =head1 Synopsis
18              
19             use PGXN::Site::Locale;
20             my $mt = PGXN::Site::Locale->accept('en');
21              
22             =head1 Description
23              
24             Subclass of L providing English localization.
25              
26             =head1 Author
27              
28             David E. Wheeler
29              
30             =head1 Copyright and License
31              
32             Copyright (c) 2010-2021 David E. Wheeler.
33              
34             This module is free software; you can redistribute it and/or modify it under
35             the L.
36              
37             Permission to use, copy, modify, and distribute this software and its
38             documentation for any purpose, without fee, and without a written agreement is
39             hereby granted, provided that the above copyright notice and this paragraph
40             and the following two paragraphs appear in all copies.
41              
42             In no event shall David E. Wheeler be liable to any party for direct,
43             indirect, special, incidental, or consequential damages, including lost
44             profits, arising out of the use of this software and its documentation, even
45             if David E. Wheeler has been advised of the possibility of such damage.
46              
47             David E. Wheeler specifically disclaims any warranties, including, but not
48             limited to, the implied warranties of merchantability and fitness for a
49             particular purpose. The software provided hereunder is on an "as is" basis,
50             and David E. Wheeler has no obligations to provide maintenance, support,
51             updates, enhancements, or modifications.
52              
53             =cut