File Coverage

blib/lib/PGXN/Site/Locale/en.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


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