Bugzilla – Attachment 57096 Details for
Bug 17539
t/db_dependent/Reserves.t is failing
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17539: Fix failing Reserves.t tests if category enrolmentfee > 0
Bug-17539-Fix-failing-Reservest-tests-if-category-.patch (text/plain), 1.44 KB, created by
Lari Taskula
on 2016-11-02 13:32:26 UTC
(
hide
)
Description:
Bug 17539: Fix failing Reserves.t tests if category enrolmentfee > 0
Filename:
MIME Type:
Creator:
Lari Taskula
Created:
2016-11-02 13:32:26 UTC
Size:
1.44 KB
patch
obsolete
>From 57801b06267f6ea561335972a6c92d425f28b93b Mon Sep 17 00:00:00 2001 >From: Lari Taskula <lari.taskula@jns.fi> >Date: Wed, 2 Nov 2016 15:28:30 +0200 >Subject: [PATCH] Bug 17539: Fix failing Reserves.t tests if category > enrolmentfee > 0 > >To test: >1. Set patron category "S" with enrolmentfee 1 >2. perl t/db_dependent/Reserves.t >3. Observe following errors: > >not ok 59 - Bug 14464 - No fines at beginning >ok 60 - Bug 14464 - 1st reserve correctly created >ok 61 - Bug 14968 - Keep found column from reserve >not ok 62 - Bug 14464 - No fines after cancelling reserve with no charge configured >ok 63 - Bug 14464 - 2nd reserve correctly created >not ok 64 - Bug 14464 - No fines after cancelling reserve with no charge desired >ok 65 - Bug 14464 - 1st reserve correctly created >not ok 66 - Bug 14464 - Fine applied after cancelling reserve with charge desired and configured > >4. Apply patch >5. perl t/db_dependent/Reserves.t >6. Observe test pass >--- > t/db_dependent/Reserves.t | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/t/db_dependent/Reserves.t b/t/db_dependent/Reserves.t >index fc7a2f7..1e62891 100755 >--- a/t/db_dependent/Reserves.t >+++ b/t/db_dependent/Reserves.t >@@ -101,6 +101,7 @@ my %data = ( > categorycode => 'S', > branchcode => 'CPL', > ); >+Koha::Patron::Categories->find('S')->set({ enrolmentfee => 0})->store; > my $borrowernumber = AddMember(%data); > my $borrower = GetMember( borrowernumber => $borrowernumber ); > my $biblionumber = $bibnum; >-- >1.9.1
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 17539
:
57094
|
57095
|
57096
|
57127
|
57128
|
57129
|
57134
|
57135
|
57136
|
57137
|
57151
|
57152
|
57153
|
57154
|
57155