File Coverage

lib/CGI/FormBuilder/Messages/en_US.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1              
2             ###########################################################################
3             # Copyright (c) Nate Wiger http://nateware.com. All Rights Reserved.
4             # Please visit http://formbuilder.org for tutorials, support, and examples.
5             ###########################################################################
6              
7             package CGI::FormBuilder::Messages::locale;
8              
9 2     2   12 use strict;
  2         4  
  2         92  
10              
11 2     2   11 use CGI::FormBuilder::Messages::default;
  2         3  
  2         62  
12 2     2   12 use base 'CGI::FormBuilder::Messages::default';
  2         5  
  2         258  
13              
14             our $VERSION = '3.09';
15              
16             # Inherit all messages from default (English) messages
17             #
18             # This structure is needed so that we can have a ::default class and
19             # have all languages inherit from that. Before, we ran into oddities
20             # where ::default != ::locale and got "base class is empty" errors.
21              
22             1;
23             __END__