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.20210225'; # VERSION
4 30     30   411 use 5.20.0;
  30         188  
5 30     30   179 use strict;
  30         58  
  30         634  
6 30     30   138 use warnings;
  30         63  
  30         897  
7 30     30   170 use base 'Exporter';
  30         62  
  30         4598  
8              
9 30     30   215 use constant LOGOTYPE_OID => '1.3.6.1.5.5.7.1.12';
  30         76  
  30         2223  
10 30     30   208 use constant USAGE_OID => '1.3.6.1.5.5.7.3.31';
  30         57  
  30         3641  
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.20210225
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