@@ -, +, @@ --- t/db_dependent/Koha/Item.t | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) --- a/t/db_dependent/Koha/Item.t +++ a/t/db_dependent/Koha/Item.t @@ -1405,7 +1405,7 @@ subtest 'store() tests' => sub { subtest '_set_found_trigger() tests' => sub { - plan tests => 8; + plan tests => 9; $schema->storage->txn_begin; @@ -1475,6 +1475,14 @@ subtest 'store() tests' => sub { 'type is correct' ); + # Let's build a new item + $item = $builder->build_sample_item({ itemlost => 1, itemlost_on => dt_from_string() }); + $item->set( { itemlost => 0 } )->store; + + $messages = $item->object_messages; + warn Data::Dumper::Dumper( $messages ); + is( scalar @{$messages}, 0, 'This item has no history, no associated lost fines, presumed not lost by patron, no messages returned'); + $schema->storage->txn_rollback; }; --