File Coverage

lib/String/MMM.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package String::MMM;
2              
3 1     1   25287 use 5.014000;
  1         4  
  1         44  
4 1     1   6 use strict;
  1         2  
  1         33  
5 1     1   5 use warnings;
  1         11  
  1         29  
6              
7 1     1   5 use base 'Exporter';
  1         2  
  1         164  
8              
9             # This allows declaration use String::MMM ':all';
10             our %EXPORT_TAGS =
11             ( 'all' =>
12             [ qw(match_strings s_match_strings match_strings_a match_arrays) ]
13             );
14              
15             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
16              
17 1     1   823 use version; our $VERSION = qv("v0.0.3"); #Three's the charm
  1         2396  
  1         7  
18              
19             require XSLoader;
20             XSLoader::load('String::MMM', $VERSION);
21              
22             # Preloaded methods go here.
23              
24             'ABCD';
25             __END__