File Coverage

lib/Workflow/Action/Mailer.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Workflow::Action::Mailer;
2              
3 1     1   596 use warnings;
  1         4  
  1         31  
4 1     1   6 use strict;
  1         1  
  1         22  
5 1     1   6 use base qw( Workflow::Action );
  1         2  
  1         308  
6              
7             $Workflow::Action::Mailer::VERSION = '1.62';
8              
9             sub execute {
10 1     1 1 813 my ($self) = @_;
11 1         8 return 1;
12             }
13              
14             1;
15              
16             __END__
17              
18             =pod
19              
20             =head1 NAME
21              
22             Workflow::Action::Mailer - a stub for a SMTP capable action
23              
24             =head1 VERSION
25              
26             This documentation describes version 1.62 of this package
27              
28             =head1 SYNOPSIS
29              
30             =head1 DESCRIPTION
31              
32             =head2 CLASS METHODS
33              
34             =head2 OBJECT METHODS
35              
36             =head3 execute
37              
38             I<Currently a stub>
39              
40             =head1 SEE ALSO
41              
42             =over
43              
44             =item L<Workflow>
45              
46             =item L<Workflow::Action>
47              
48             =back
49              
50             =head1 COPYRIGHT
51              
52             Copyright (c) 2003-2023 Chris Winters. All rights reserved.
53              
54             This library is free software; you can redistribute it and/or modify
55             it under the same terms as Perl itself.
56              
57             Please see the F<LICENSE>
58              
59             =head1 AUTHORS
60              
61             Please see L<Workflow>
62              
63             =cut