Bug 25617: (QA follow-up) Add responses to tests
authorNick Clemens <nick@bywatersolutions.com>
Thu, 28 May 2020 17:37:20 +0000 (17:37 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 29 May 2020 09:30:02 +0000 (11:30 +0200)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>
Signed-off-by: Alex Arnaud <alex.arnaud@biblibre.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

t/DateUtils.t

index b7cd33c..5248997 100755 (executable)
@@ -270,17 +270,17 @@ subtest 'TimeFormat 12hr' => sub {
     t::lib::Mocks::mock_preference('TimeFormat', '12hr');
     my $output = output_pref({ dt => $dt, dateformat => 'iso' });
     $dt = dt_from_string( $output, 'iso' );
-    is( output_pref( {dt => $dt} ), '28/05/2020 12:49 PM' );
+    is( output_pref( {dt => $dt} ), '28/05/2020 12:49 PM', "12 NOON formatted correctly in 12hr format" );
     t::lib::Mocks::mock_preference('TimeFormat', '24hr');
-    is( output_pref( {dt => $dt} ), '28/05/2020 12:49' );
+    is( output_pref( {dt => $dt} ), '28/05/2020 12:49' , "12 NOON formatted correctly in 24hr format" );
 
     $dt = DateTime->new( year => 2020, month => 5, day => 28, hour => 0, minute => 49 );
     t::lib::Mocks::mock_preference('TimeFormat', '12hr');
     $output = output_pref({ dt => $dt, dateformat => 'iso' });
     $dt = dt_from_string( $output, 'iso' );
-    is( output_pref( {dt => $dt} ), '28/05/2020 12:49 AM' );
+    is( output_pref( {dt => $dt} ), '28/05/2020 12:49 AM', "12 MIDNIGHT formatted correctly in 12hr format" );
     t::lib::Mocks::mock_preference('TimeFormat', '24hr');
-    is( output_pref( {dt => $dt} ), '28/05/2020 00:49' );
+    is( output_pref( {dt => $dt} ), '28/05/2020 00:49', "12 MIDNIGHT formatted correctly in 24hr format" );
 };
 
 # output_pref with no parameters, single parameter (no hash)