Browse Source
This patch change Koha::Cron to be a more generic Koha::Script class and update all commanline driven scripts to use it. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>19.05.x
99 changed files with 191 additions and 65 deletions
@ -0,0 +1,48 @@ |
|||
#!/usr/bin/perl |
|||
|
|||
# This file is part of Koha. |
|||
# |
|||
# Koha is free software; you can redistribute it and/or modify it |
|||
# under the terms of the GNU General Public License as published by |
|||
# the Free Software Foundation; either version 3 of the License, or |
|||
# (at your option) any later version. |
|||
# |
|||
# Koha is distributed in the hope that it will be useful, but |
|||
# WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU General Public License for more details. |
|||
# |
|||
# You should have received a copy of the GNU General Public License |
|||
# along with Koha; if not, see <http://www.gnu.org/licenses>. |
|||
|
|||
use Modern::Perl; |
|||
|
|||
use Test::More tests => 3; |
|||
|
|||
BEGIN { use_ok('Koha::Script') } |
|||
|
|||
use C4::Context; |
|||
|
|||
my $userenv = C4::Context->userenv; |
|||
is_deeply( |
|||
$userenv, |
|||
{ |
|||
'surname' => 'CLI', |
|||
'id' => undef, |
|||
'flags' => undef, |
|||
'cardnumber' => undef, |
|||
'firstname' => 'CLI', |
|||
'branchname' => undef, |
|||
'branchprinter' => undef, |
|||
'emailaddress' => undef, |
|||
'number' => undef, |
|||
'shibboleth' => undef, |
|||
'branch' => undef |
|||
}, |
|||
"Context userenv set correctly with no flags" |
|||
); |
|||
|
|||
my $interface = C4::Context->interface; |
|||
is( $interface, 'commandline', "Context interface set correctly with no flags" ); |
|||
|
|||
1; |
Loading…
Reference in new issue