From b5a5932814fc9fcd71f9ddbca60014a5a9c4cee6 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Fri, 10 May 2024 10:29:13 +0200 Subject: [PATCH] Bug 36486: Fix file perms and tidiness Signed-off-by: Marcel de Rooy Signed-off-by: Katrin Fischer (cherry picked from commit 8d24f3e80eaeb615e1c143a2c3559ef9bdf787f6) Signed-off-by: Fridolin Somers --- t/Koha/DateTime/Format/SQL.t | 54 ++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 27 deletions(-) mode change 100644 => 100755 t/Koha/DateTime/Format/SQL.t diff --git a/t/Koha/DateTime/Format/SQL.t b/t/Koha/DateTime/Format/SQL.t old mode 100644 new mode 100755 index 8ae3f09c54..9e3003c398 --- a/t/Koha/DateTime/Format/SQL.t +++ b/t/Koha/DateTime/Format/SQL.t @@ -8,10 +8,10 @@ use Test::More; BEGIN { use_ok('Koha::DateTime::Format::SQL'); } -my $local_timezone = DateTime::TimeZone->new( name => 'local' ); +my $local_timezone = DateTime::TimeZone->new( name => 'local' ); my $koha_config_mock = Test::MockModule->new('Koha::Config'); -my $config = { timezone => '' }; -$koha_config_mock->mock('get', sub { $config->{$_[1]} }); +my $config = { timezone => '' }; +$koha_config_mock->mock( 'get', sub { $config->{ $_[1] } } ); subtest 'normal datetime, no timezone configured' => sub { plan tests => 7; @@ -21,12 +21,12 @@ subtest 'normal datetime, no timezone configured' => sub { my $dt = Koha::DateTime::Format::SQL->parse_datetime('2024-01-02 10:11:12'); - is( $dt->year, 2024 ); - is( $dt->month, 1 ); - is( $dt->day, 2 ); - is( $dt->hour, 10 ); - is( $dt->minute, 11 ); - is( $dt->second, 12 ); + is( $dt->year, 2024 ); + is( $dt->month, 1 ); + is( $dt->day, 2 ); + is( $dt->hour, 10 ); + is( $dt->minute, 11 ); + is( $dt->second, 12 ); is( $dt->time_zone->name, $local_timezone->name ); }; @@ -38,12 +38,12 @@ subtest 'normal datetime, with timezone configured' => sub { my $dt = Koha::DateTime::Format::SQL->parse_datetime('2024-01-02 10:11:12'); - is( $dt->year, 2024 ); - is( $dt->month, 1 ); - is( $dt->day, 2 ); - is( $dt->hour, 10 ); - is( $dt->minute, 11 ); - is( $dt->second, 12 ); + is( $dt->year, 2024 ); + is( $dt->month, 1 ); + is( $dt->day, 2 ); + is( $dt->hour, 10 ); + is( $dt->minute, 11 ); + is( $dt->second, 12 ); is( $dt->time_zone->name, 'Pacific/Auckland' ); }; @@ -55,12 +55,12 @@ subtest 'infinite datetime, no timezone configured' => sub { my $dt = Koha::DateTime::Format::SQL->parse_datetime('9999-01-02 10:11:12'); - is( $dt->year, 9999 ); - is( $dt->month, 1 ); - is( $dt->day, 2 ); - is( $dt->hour, 10 ); - is( $dt->minute, 11 ); - is( $dt->second, 12 ); + is( $dt->year, 9999 ); + is( $dt->month, 1 ); + is( $dt->day, 2 ); + is( $dt->hour, 10 ); + is( $dt->minute, 11 ); + is( $dt->second, 12 ); is( $dt->time_zone->name, 'floating' ); }; @@ -72,12 +72,12 @@ subtest 'normal datetime, with timezone configured' => sub { my $dt = Koha::DateTime::Format::SQL->parse_datetime('9999-01-02 10:11:12'); - is( $dt->year, 9999 ); - is( $dt->month, 1 ); - is( $dt->day, 2 ); - is( $dt->hour, 10 ); - is( $dt->minute, 11 ); - is( $dt->second, 12 ); + is( $dt->year, 9999 ); + is( $dt->month, 1 ); + is( $dt->day, 2 ); + is( $dt->hour, 10 ); + is( $dt->minute, 11 ); + is( $dt->second, 12 ); is( $dt->time_zone->name, 'floating' ); }; -- 2.20.1