@@ -, +, @@ --- t/lib/Koha/Plugin/BrokenInstall.pm | 14 ++++++++++++++ t/lib/Koha/Plugin/BrokenUpgrade.pm | 14 ++++++++++++++ 2 files changed, 28 insertions(+) --- a/t/lib/Koha/Plugin/BrokenInstall.pm +++ a/t/lib/Koha/Plugin/BrokenInstall.pm @@ -16,6 +16,14 @@ our $metadata = { version => $VERSION, }; +=head1 METHODS + +=head2 new + +instantiate the plugin + +=cut + sub new { my ( $class, $args ) = @_; $args->{'metadata'} = $metadata; @@ -23,6 +31,12 @@ sub new { return $self; } +=head2 install + +install method that dies + +=cut + sub install { die "Why Liz? WHY?"; } --- a/t/lib/Koha/Plugin/BrokenUpgrade.pm +++ a/t/lib/Koha/Plugin/BrokenUpgrade.pm @@ -16,6 +16,14 @@ our $metadata = { version => $VERSION, }; +=head1 METHODS + +=head2 new + +Instantiate the plugin + +=cut + sub new { my ( $class, $args ) = @_; $args->{'metadata'} = $metadata; @@ -23,6 +31,12 @@ sub new { return $self; } +=head2 upgrade + +upgrade method that dies + +=cut + sub upgrade { die "Why Liz? WHY?"; } --