File Coverage

blib/lib/Mail/BIMI/Constants.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1             package Mail::BIMI::Constants;
2             # ABSTRACT: Setup system wide constants
3             our $VERSION = '3.20210512'; # VERSION
4 30     30   421 use 5.20.0;
  30         160  
5 30     30   163 use strict;
  30         62  
  30         689  
6 30     30   139 use warnings;
  30         51  
  30         956  
7 30     30   193 use base 'Exporter';
  30         58  
  30         4991  
8              
9 30     30   209 use constant LOGOTYPE_OID => '1.3.6.1.5.5.7.1.12';
  30         98  
  30         2271  
10 30     30   187 use constant USAGE_OID => '1.3.6.1.5.5.7.3.31';
  30         55  
  30         3571  
11              
12             our @EXPORT = qw( LOGOTYPE_OID USAGE_OID );
13             our @EXPORT_OK = ( @EXPORT );
14             our %EXPORT_TAGS = ( 'all' => [ @EXPORT_OK ] );
15              
16             1;
17              
18             __END__
19              
20             =pod
21              
22             =encoding UTF-8
23              
24             =head1 NAME
25              
26             Mail::BIMI::Constants - Setup system wide constants
27              
28             =head1 VERSION
29              
30             version 3.20210512
31              
32             =head1 REQUIRES
33              
34             =over 4
35              
36             =item * L<Exporter|Exporter>
37              
38             =item * L<base|base>
39              
40             =item * L<constant|constant>
41              
42             =item * L<strict|strict>
43              
44             =item * L<warnings|warnings>
45              
46             =back
47              
48             =head1 AUTHOR
49              
50             Marc Bradshaw <marc@marcbradshaw.net>
51              
52             =head1 COPYRIGHT AND LICENSE
53              
54             This software is copyright (c) 2020 by Marc Bradshaw.
55              
56             This is free software; you can redistribute it and/or modify it under
57             the same terms as the Perl 5 programming language system itself.
58              
59             =cut