Bug 22709: (RM follow-up) Clean up plugin tests
[koha.git] / t / db_dependent / Koha / Plugins / z_reset.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 3 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along
15 # with Koha; if not, see <http://www.gnu.org/licenses>.
16
17 use Modern::Perl;
18 use C4::Context;
19 use Koha::Plugins;
20 use Koha::Plugins::Methods;
21
22 use Test::More tests => 1;
23
24 my $plugins = Koha::Plugins->new()->InstallPlugins;
25
26 ok( 1, 'Plugins reset' );
27
28 1;