Bugzilla – Attachment 58568 Details for
Bug 17836
(ILSDI) 'charges' always '1'
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17836: (ILSDI) Regression test
Bug-17836-ILSDI-Regression-test.patch (text/plain), 1.68 KB, created by
Tomás Cohen Arazi (tcohen)
on 2017-01-03 16:27:30 UTC
(
hide
)
Description:
Bug 17836: (ILSDI) Regression test
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2017-01-03 16:27:30 UTC
Size:
1.68 KB
patch
obsolete
>From 6703dbd0b8dd3517dbbc4d6930c8131645bfa436 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Tue, 3 Jan 2017 13:13:32 -0300 >Subject: [PATCH] Bug 17836: (ILSDI) Regression test > >Sponsored-by: ByWater Solutions >--- > t/db_dependent/ILSDI_Services.t | 9 ++++++++- > 1 file changed, 8 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/ILSDI_Services.t b/t/db_dependent/ILSDI_Services.t >index 15806a6f..88e8181 100644 >--- a/t/db_dependent/ILSDI_Services.t >+++ b/t/db_dependent/ILSDI_Services.t >@@ -20,6 +20,7 @@ use Modern::Perl; > use CGI qw ( -utf8 ); > > use Test::More tests => 3; >+use Test::MockModule; > use t::lib::Mocks; > use t::lib::TestBuilder; > >@@ -94,7 +95,7 @@ subtest 'AuthenticatePatron test' => sub { > > subtest 'GetPatronInfo/GetBorrowerAttributes test for extended patron attributes' => sub { > >- plan tests => 1; >+ plan tests => 2; > > $schema->storage->txn_begin; > >@@ -165,6 +166,9 @@ subtest 'GetPatronInfo/GetBorrowerAttributes test for extended patron attributes > } > } ); > >+ my $members = Test::MockModule->new('C4::Members'); >+ $members->mock( 'GetMemberAccountBalance', sub { return ( 10, 10, 0 ); } ); >+ > # Prepare and send web request for IL-SDI server: > my $query = new CGI; > $query->param( 'service', 'GetPatronInfo' ); >@@ -184,6 +188,9 @@ subtest 'GetPatronInfo/GetBorrowerAttributes test for extended patron attributes > value_description => undef, > }; > >+ is( $reply->{'charges'}, '10.00', >+ 'The \'charges\' attribute should be correctly filled (bug 17836)' ); >+ > # Check results: > is_deeply( $reply->{'attributes'}, [ $cmp ], 'Test GetPatronInfo - show_attributes parameter' ); > >-- >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 17836
:
58568
|
58569
|
58574
|
58575
|
58981
|
58982