@@ -, +, @@ upgrading Mojolicious --- t/db_dependent/Koha/Object.t | 6 ++++++ 1 file changed, 6 insertions(+) --- a/t/db_dependent/Koha/Object.t +++ a/t/db_dependent/Koha/Object.t @@ -164,9 +164,15 @@ subtest 'TO_JSON tests' => sub { my $updated_on = $patron->TO_JSON->{updated_on}; my $lastseen = $patron->TO_JSON->{lastseen}; + # TODO: + # Fix the following test when upgrading Mojolicious - Mojo::JSON::_Bool replaced with + # JSON::PP::Boolean ok( $lost->isa('Mojo::JSON::_Bool'), 'Boolean attribute type is correct' ); is( $lost, 1, 'Boolean attribute value is correct (true)' ); + # TODO: + # Fix the following test when upgrading Mojolicious - Mojo::JSON::_Bool replaced with + # JSON::PP::Boolean ok( $gonenoaddress->isa('Mojo::JSON::_Bool'), 'Boolean attribute type is correct' ); is( $gonenoaddress, 0, 'Boolean attribute value is correct (false)' ); --