File Coverage

blib/lib/Mail/Lite/Constants.pm
Criterion Covered Total %
statement 13 14 92.8
branch n/a
condition n/a
subroutine 7 8 87.5
pod 0 5 0.0
total 20 27 74.0


line stmt bran cond sub pod time code
1             #
2             #===============================================================================
3             #
4             # FILE: Constants.pm
5             #
6             # DESCRIPTION: Mail::Lite::Constants -- constants for Mail::Lite.
7             #
8             # FILES: ---
9             # BUGS: ---
10             # NOTES: ---
11             # AUTHOR: Pavel Boldin (),
12             # COMPANY:
13             # VERSION: 1.0
14             # CREATED: 14.09.2008 20:31:33 MSD
15             # REVISION: ---
16             #===============================================================================
17              
18             package Mail::Lite::Constants;
19              
20 2     2   12 use strict;
  2         4  
  2         69  
21 2     2   11 use warnings;
  2         3  
  2         54  
22              
23 2     2   10 use Exporter qw/import/;
  2         3  
  2         437  
24              
25             our @EXPORT = qw/OK STOP ERROR NEXT_RULE STOP_RULE/;
26              
27 2032     2032 0 8730 sub OK { 1 };
28 0     0 0 0 sub ERROR { ! OK };
29 490     490 0 2037 sub STOP { "STOP\n" };
30 863     863 0 7259 sub NEXT_RULE { "NEXT_RULE\n" };
31 234     234 0 1676 sub STOP_RULE { "STOP_RULE\n" };
32              
33              
34             1;