File Coverage

blib/lib/Locale/Msgcat.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Locale::Msgcat;
2              
3 1     1   772 use strict;
  1         2  
  1         44  
4 1     1   4 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
  1         1  
  1         143  
5              
6             require Exporter;
7             require DynaLoader;
8              
9             @ISA = qw(Exporter DynaLoader);
10             # Items to export into callers namespace by default. Note: do not export
11             # names by default without a very good reason. Use EXPORT_OK instead.
12             # Do not simply export all your public functions/methods/constants.
13             @EXPORT = qw(
14            
15             );
16             $VERSION = '1.03';
17              
18             ## Define required constants
19             #require 'nl_types.ph';
20              
21             bootstrap Locale::Msgcat $VERSION;
22              
23             # Preloaded methods go here.
24              
25             # Autoload methods go after =cut, and are processed by the autosplit program.
26              
27             1;
28             __END__