From 0e448aa67331f37a8ba0799e89b8c601abafd7dc Mon Sep 17 00:00:00 2001 From: David Gustafsson Date: Wed, 19 Oct 2022 16:11:15 +0200 Subject: [PATCH] Bug 31856: Add test for get_description_by_category_and_authorised_value --- t/db_dependent/AuthorisedValues.t | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/t/db_dependent/AuthorisedValues.t b/t/db_dependent/AuthorisedValues.t index 218c8d29aa4..e8f762dbf11 100755 --- a/t/db_dependent/AuthorisedValues.t +++ b/t/db_dependent/AuthorisedValues.t @@ -327,6 +327,23 @@ subtest 'search_by_*_field + find_by_koha_field + get_description + authorised_v $schema->storage->txn_rollback; }; + + subtest 'get_description_by_category_and_authorised_value' => sub { + plan tests => 1; + my $description = Koha::AuthorisedValues->get_description_by_category_and_authorised_value( + { + category => $av_0->category,, + authorised_value => $av_0->authorised_value, + } + ); + is_deeply( + $description, + { + lib => $av_0->lib, + opac_description => $av_0->lib_opac + } + ); + }; }; subtest 'is_integer_only' => sub { -- 2.48.1