From a447824350b5a9ded4eaaa269e965b3a18b9cff6 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 10 Jun 2020 10:11:52 -0300 Subject: [PATCH] [19.11.x] Bug 22522: Adjust tests to previous changes Signed-off-by: Tomas Cohen Arazi --- t/db_dependent/Koha/REST/Plugin/Objects.t | 24 +++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/t/db_dependent/Koha/REST/Plugin/Objects.t b/t/db_dependent/Koha/REST/Plugin/Objects.t index 13f9a648ead..9551fff64f0 100644 --- a/t/db_dependent/Koha/REST/Plugin/Objects.t +++ b/t/db_dependent/Koha/REST/Plugin/Objects.t @@ -31,7 +31,7 @@ plugin 'Koha::REST::Plugin::Pagination'; get '/cities' => sub { my $c = shift; $c->validation->output($c->req->params->to_hash); - my $cities = $c->objects->search(Koha::Cities->new); + my $cities = $c->objects->search(Koha::Cities->new, \&to_model ); $c->render( status => 200, json => $cities ); }; @@ -152,18 +152,18 @@ subtest 'objects.search helper' => sub { }); # _match=starts_with - $t->get_ok('/cities?name=manuel&_per_page=4&_page=1&_match=starts_with') + $t->get_ok('/cities?nombre=manuel&_per_page=4&_page=1&_match=starts_with') ->status_is(200) ->json_has('/0') ->json_has('/1') ->json_has('/2') ->json_hasnt('/3') - ->json_is('/0/name' => 'Manuel') - ->json_is('/1/name' => 'Manuela') - ->json_is('/2/name' => 'Manuelab'); + ->json_is('/0/city_name' => 'Manuel') + ->json_is('/1/city_name' => 'Manuela') + ->json_is('/2/city_name' => 'Manuelab'); # _match=ends_with - $t->get_ok('/cities?name=manuel&_per_page=4&_page=1&_match=ends_with') + $t->get_ok('/cities?nombre=manuel&_per_page=4&_page=1&_match=ends_with') ->status_is(200) ->json_has('/0') ->json_has('/1') @@ -172,24 +172,24 @@ subtest 'objects.search helper' => sub { ->json_is('/1/city_name' => 'Emanuel'); # _match=exact - $t->get_ok('/cities?name=manuel&_per_page=4&_page=1&_match=exact') + $t->get_ok('/cities?nombre=manuel&_per_page=4&_page=1&_match=exact') ->status_is(200) ->json_has('/0') ->json_hasnt('/1') ->json_is('/0/city_name' => 'Manuel'); # _match=contains - $t->get_ok('/cities?name=manuel&_per_page=4&_page=1&_match=contains') + $t->get_ok('/cities?nombre=manuel&_per_page=4&_page=1&_match=contains') ->status_is(200) ->json_has('/0') ->json_has('/1') ->json_has('/2') ->json_has('/3') ->json_hasnt('/4') - ->json_is('/0/name' => 'Manuel') - ->json_is('/1/name' => 'Manuela') - ->json_is('/2/name' => 'Manuelab') - ->json_is('/3/name' => 'Emanuel'); + ->json_is('/0/city_name' => 'Manuel') + ->json_is('/1/city_name' => 'Manuela') + ->json_is('/2/city_name' => 'Manuelab') + ->json_is('/3/city_name' => 'Emanuel'); $schema->storage->txn_rollback; }; -- 2.27.0