File Coverage

blib/lib/WebMoney/WMSigner.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 WebMoney::WMSigner;
2              
3 1     1   9367 use strict;
  1         3  
  1         63  
4              
5             require Exporter;
6             require DynaLoader;
7              
8 1     1   5 use vars qw( @ISA %EXPORT_TAGS @EXPORT_OK @EXPORT $VERSION );
  1         2  
  1         219  
9              
10             @ISA = qw(Exporter DynaLoader);
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 WMSigner ':all';
17             # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
18             # will save memory.
19             %EXPORT_TAGS = ( 'all' => [ qw(
20            
21             ) ] );
22              
23             @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
24              
25             @EXPORT = qw(
26            
27             );
28             $VERSION = '0.02';
29              
30             bootstrap WebMoney::WMSigner $VERSION;
31              
32             # Preloaded methods go here.
33              
34             1;
35             __END__