File Coverage

blib/lib/Text/IdMor.pm
Criterion Covered Total %
statement 42 42 100.0
branch 19 22 86.3
condition 4 6 66.6
subroutine 12 12 100.0
pod 6 7 85.7
total 83 89 93.2


line stmt bran cond sub pod time code
1             package Text::IdMor;
2              
3 1     1   22924 use 5.008008;
  1         3  
  1         43  
4 1     1   12 use strict;
  1         2  
  1         35  
5 1     1   4 use warnings;
  1         7  
  1         45  
6              
7             require Exporter;
8 1     1   969 use AutoLoader qw(AUTOLOAD);
  1         1560  
  1         7  
9              
10             our @ISA = qw(Exporter);
11              
12             # Items to export into callers namespace by default. Note: do not export
13             # names by default without a very good reason. Use EXPORT_OK instead.
14             # Do not simply export all your public functions/methods/constants.
15              
16             # This allows declaration use Text::IdMor ':all';
17             # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
18             # will save memory.
19             our %EXPORT_TAGS = ( 'all' => [ qw(
20             isAcronym
21             isRomanNumber
22             isNumber
23             isInteger
24             isSpanishRealNumber
25             isOrdinalNumber
26             isWord
27             ) ] );
28              
29             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
30              
31             our @EXPORT = qw(
32            
33             );
34              
35             our $VERSION = '0.9';
36              
37              
38             # Preloaded methods go here.
39              
40             # Autoload methods go after =cut, and are processed by the autosplit program.
41              
42             1;
43             __END__