From dcb5bf00aac12642052b21fe9dbb4d50bb5458a4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 2 Jul 2015 10:20:13 +0100 Subject: [PATCH] Bug 13853: (follow-up) unit tests Specify the reference, we should receive Koha::Object. Signed-off-by: Jonathan Druart Signed-off-by: Tomas Cohen Arazi --- t/db_dependent/Items.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/db_dependent/Items.t b/t/db_dependent/Items.t index c6444926ef..b1796bc6a3 100755 --- a/t/db_dependent/Items.t +++ b/t/db_dependent/Items.t @@ -406,14 +406,14 @@ subtest 'Koha::Item(s) tests' => sub { # Get item. my $item = Koha::Items->find( $itemnumber ); - ok( $item, "Got Koha::Item" ); + is( ref($item), 'Koha::Item', "Got Koha::Item" ); my $homebranch = $item->home_branch(); - ok( $homebranch, "Got Koha::Branch from home_branch method" ); + is( ref($homebranch), 'Koha::Branch', "Got Koha::Branch from home_branch method" ); is( $homebranch->branchcode(), $branch1, "Home branch code matches homebranch" ); my $holdingbranch = $item->holding_branch(); - ok( $holdingbranch, "Got Koha::Branch from holding_branch method" ); + is( ref($holdingbranch), 'Koha::Branch', "Got Koha::Branch from holding_branch method" ); is( $holdingbranch->branchcode(), $branch2, "Home branch code matches holdingbranch" ); }; -- 2.39.5