Bug 22006: Add tests
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 14 Dec 2018 19:14:42 +0000 (16:14 -0300)
committerNick Clemens <nick@bywatersolutions.com>
Fri, 18 Jan 2019 20:32:54 +0000 (20:32 +0000)
Signed-off-by: Pierre-Marc Thibault <pierre-marc.thibault@inLibro.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

t/db_dependent/Koha/Account/Lines.t

index b0ea018..f7f0c16 100755 (executable)
@@ -35,7 +35,7 @@ my $builder = t::lib::TestBuilder->new;
 
 subtest 'item() tests' => sub {
 
-    plan tests => 2;
+    plan tests => 3;
 
     $schema->storage->txn_begin;
 
@@ -64,6 +64,9 @@ subtest 'item() tests' => sub {
     is( ref( $account_line_item ), 'Koha::Item', 'Koha::Account::Line->item should return a Koha::Item' );
     is( $line->itemnumber, $account_line_item->itemnumber, 'Koha::Account::Line->item should return the correct item' );
 
+    $line->itemnumber(undef)->store;
+    is( $line->item, undef, 'Koha::Account::Line->item should return undef if no item linked' );
+
     $schema->storage->txn_rollback;
 };