Lines 1-28
Link Here
|
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; |
29 |
- |