Bug 13853: (follow-up) unit tests

Specify the reference, we should receive Koha::Object.

Signed-off-by: Jonathan Druart <jonathan.druart@koha-community.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@unc.edu.ar>
This commit is contained in:
Jonathan Druart 2015-07-02 10:20:13 +01:00 committed by Tomas Cohen Arazi
parent ae82953138
commit dcb5bf00aa

View file

@ -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" );
};