From d8dd311061fe6b30a9c5caae0fc46632c86b24e9 Mon Sep 17 00:00:00 2001 From: Erik Huelsmann Date: Wed, 14 Jul 2021 21:11:39 +0200 Subject: [PATCH] Remove empty Workflow::Action::Mailer action --- lib/Workflow/Action/Mailer.pm | 63 ----------------------------------- t/action_mailer.t | 10 ------ 2 files changed, 73 deletions(-) delete mode 100644 lib/Workflow/Action/Mailer.pm delete mode 100644 t/action_mailer.t diff --git a/lib/Workflow/Action/Mailer.pm b/lib/Workflow/Action/Mailer.pm deleted file mode 100644 index 50b54871..00000000 --- a/lib/Workflow/Action/Mailer.pm +++ /dev/null @@ -1,63 +0,0 @@ -package Workflow::Action::Mailer; - -use warnings; -use strict; -use base qw( Workflow::Action ); - -$Workflow::Action::Mailer::VERSION = '1.55'; - -sub execute { - my ($self) = @_; - return 1; -} - -1; - -__END__ - -=pod - -=head1 NAME - -Workflow::Action::Mailer - a stub for a SMTP capable action - -=head1 VERSION - -This documentation describes version 1.55 of this package - -=head1 SYNOPSIS - -=head1 DESCRIPTION - -=head2 CLASS METHODS - -=head2 OBJECT METHODS - -=head3 execute - -I - -=head1 SEE ALSO - -=over - -=item L - -=item L - -=back - -=head1 COPYRIGHT - -Copyright (c) 2003-2021 Chris Winters. All rights reserved. - -This library is free software; you can redistribute it and/or modify -it under the same terms as Perl itself. - -Please see the F - -=head1 AUTHORS - -Please see L - -=cut diff --git a/t/action_mailer.t b/t/action_mailer.t deleted file mode 100644 index ef92d7e0..00000000 --- a/t/action_mailer.t +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env perl - -use strict; -use lib qw(../lib lib ../t t); -use TestUtil; -use Test::More tests => 2; - -require_ok( 'Workflow::Action::Mailer' ); - -ok(Workflow::Action::Mailer->execute());