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:
parent
ae82953138
commit
dcb5bf00aa
1 changed files with 3 additions and 3 deletions
|
@ -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" );
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue