Bugzilla – Attachment 83246 Details for
Bug 22006
Koha::Account::Line->item should return undef if no item linked
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22006: Add tests
Bug-22006-Add-tests.patch (text/plain), 1.20 KB, created by
Pierre-Marc Thibault
on 2018-12-14 20:08:10 UTC
(
hide
)
Description:
Bug 22006: Add tests
Filename:
MIME Type:
Creator:
Pierre-Marc Thibault
Created:
2018-12-14 20:08:10 UTC
Size:
1.20 KB
patch
obsolete
>From 401741c78e61c21e4bbdca600d6e8ef782fdbb0d Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 14 Dec 2018 16:14:42 -0300 >Subject: [PATCH] Bug 22006: Add tests > >Signed-off-by: Pierre-Marc Thibault <pierre-marc.thibault@inLibro.com> >--- > t/db_dependent/Koha/Account/Lines.t | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/Koha/Account/Lines.t b/t/db_dependent/Koha/Account/Lines.t >index eb8dfdd..a01599e 100755 >--- a/t/db_dependent/Koha/Account/Lines.t >+++ b/t/db_dependent/Koha/Account/Lines.t >@@ -34,7 +34,7 @@ my $builder = t::lib::TestBuilder->new; > > subtest 'item() tests' => sub { > >- plan tests => 2; >+ plan tests => 3; > > $schema->storage->txn_begin; > >@@ -63,6 +63,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; > }; > >-- >2.7.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22006
:
83240
|
83241
|
83246
|
83247
|
84000
|
84001