X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=t%2Fdb_dependent%2FSitemapper.t;h=ae3dbeba3fdcf8495523ee6745005348a1cbbfe7;hb=bb5d95749bd597953fad17ba4cc3f5262d538ff2;hp=91a4933d38b523ca5d031c45e527f413a78289ea;hpb=3ff7c27d9840da14a63b518d96e0fcd44d0f970a;p=koha-ffzg.git diff --git a/t/db_dependent/Sitemapper.t b/t/db_dependent/Sitemapper.t index 91a4933d38..ae3dbeba3f 100755 --- a/t/db_dependent/Sitemapper.t +++ b/t/db_dependent/Sitemapper.t @@ -4,38 +4,37 @@ # # 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 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. +# 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, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . use Modern::Perl; use File::Basename; use File::Path; use DateTime; +use Koha::DateUtils qw( dt_from_string ); use Test::MockModule; use Test::More tests => 16; -use Koha::Schema; use Carp qw/croak carp/; -use Koha::UploadedFile; BEGIN { use_ok('Koha::Sitemapper'); use_ok('Koha::Sitemapper::Writer'); } -my $now_value = DateTime->now(); +my $now_value = dt_from_string(); my $mocked_datetime = Test::MockModule->new('DateTime'); -$mocked_datetime->mock( 'now', sub { return $now_value; } ); +$mocked_datetime->mock( 'now', sub { return $now_value->clone; } ); sub slurp { my $file = shift;