From 14c53bd6fbd26291d50cadb6b0f8c853adc0ddf5 Mon Sep 17 00:00:00 2001 From: Pedro Amorim Date: Mon, 20 Oct 2025 09:25:21 +0000 Subject: [PATCH] Bug 41054: Add test prove t/db_dependent/Koha/ILL/Backend/Standard.t Signed-off-by: Richard Bridgen --- t/db_dependent/Koha/ILL/Backend/Standard.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/db_dependent/Koha/ILL/Backend/Standard.t b/t/db_dependent/Koha/ILL/Backend/Standard.t index 94193aa9415..5e6aea6e25c 100755 --- a/t/db_dependent/Koha/ILL/Backend/Standard.t +++ b/t/db_dependent/Koha/ILL/Backend/Standard.t @@ -116,7 +116,7 @@ subtest 'edititem() tests' => sub { subtest 'metadata() tests' => sub { - plan tests => 8; + plan tests => 9; $schema->storage->txn_begin; @@ -129,6 +129,7 @@ subtest 'metadata() tests' => sub { title => 'Test Title', author => 'Test Author', isbn => '1234567890', + eissn => 'eissntest', year => '2023', custom_field => 'custom_value', @@ -150,6 +151,7 @@ subtest 'metadata() tests' => sub { is( $metadata->{Title}, 'Test Title', 'Title included in metadata' ); is( $metadata->{Author}, 'Test Author', 'Author included in metadata' ); is( $metadata->{ISBN}, '1234567890', 'ISBN included in metadata' ); + is( $metadata->{eISSN}, 'eissntest', 'eISSN included in metadata' ); is( $metadata->{Year}, '2023', 'Year included in metadata' ); is( $metadata->{Custom_field}, 'custom_value', 'Custom field included in metadata' ); -- 2.39.5