File Coverage

blib/lib/Web/Machine/I18N/en.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Web::Machine::I18N::en;
2             BEGIN {
3 1     1   939 $Web::Machine::I18N::en::AUTHORITY = 'cpan:STEVAN';
4             }
5             # ABSTRACT: The English support for I18N-ed HTTP information
6             $Web::Machine::I18N::en::VERSION = '0.15';
7 1     1   6 use strict;
  1         1  
  1         31  
8 1     1   8 use warnings;
  1         2  
  1         34  
9              
10 1     1   6 use parent 'Web::Machine::I18N';
  1         2  
  1         6  
11              
12             our %Lexicon = (
13             100 => 'Continue',
14             101 => 'Switching Protocols',
15             200 => 'OK',
16             201 => 'Created',
17             202 => 'Accepted',
18             203 => 'Non-Authoritative Information',
19             204 => 'No Content',
20             205 => 'Reset Content',
21             206 => 'Partial Content',
22             300 => 'Multiple Choices',
23             301 => 'Moved Permanently',
24             302 => 'Found',
25             303 => 'See Other',
26             304 => 'Not Modified',
27             305 => 'Use Proxy',
28             307 => 'Temporary Redirect',
29             400 => 'Bad Request',
30             401 => 'Unauthorized',
31             402 => 'Payment Required',
32             403 => 'Forbidden',
33             404 => 'Not Found',
34             405 => 'Method Not Allowed',
35             406 => 'Not Acceptable',
36             407 => 'Proxy Authentication Required',
37             408 => 'Request Time-out',
38             409 => 'Conflict',
39             410 => 'Gone',
40             411 => 'Length Required',
41             412 => 'Precondition Failed',
42             413 => 'Request Entity Too Large',
43             414 => 'Request-URI Too Large',
44             415 => 'Unsupported Media Type',
45             416 => 'Requested range not satisfiable',
46             417 => 'Expectation Failed',
47             418 => "I'm a teapot",
48             500 => 'Internal Server Error',
49             501 => 'Not Implemented',
50             502 => 'Bad Gateway',
51             503 => 'Service Unavailable',
52             504 => 'Gateway Time-out',
53             505 => 'HTTP Version not supported',
54             );
55              
56             1;
57              
58             __END__