Bug 23284: Remove test duplication

A duplicate test was introduced during rebaseing work on bug 21073

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Martin Renvoize 2019-07-09 08:26:15 +01:00
parent 803e209e37
commit 428d0e6112
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F

View file

@ -25,7 +25,7 @@ use File::Temp qw( tempdir tempfile );
use FindBin qw($Bin);
use Module::Load::Conditional qw(can_load);
use Test::MockModule;
use Test::More tests => 52;
use Test::More tests => 51;
use C4::Context;
use Koha::Database;
@ -90,27 +90,6 @@ subtest 'Version upgrade tests' => sub {
$schema->storage->txn_rollback;
};
subtest 'Version upgrade tests' => sub {
plan tests => 1;
$schema->storage->txn_begin;
my $plugin = Koha::Plugin::Test->new( { enable_plugins => 1, cgi => CGI->new } );
# make sure there's no version on the DB
$schema->resultset('PluginData')
->search( { plugin_class => $plugin->{class}, plugin_key => '__INSTALLED_VERSION__' } )
->delete;
$plugin = Koha::Plugin::Test->new( { enable_plugins => 1, cgi => CGI->new } );
my $version = $plugin->retrieve_data('__INSTALLED_VERSION__');
is( $version, $plugin->get_metadata->{version}, 'Version has been populated correctly' );
$schema->storage->txn_rollback;
};
subtest 'is_enabled() tests' => sub {
plan tests => 3;