Bugzilla – Attachment 85736 Details for
Bug 19489
Detailed description of charges on Accounting tab
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19489: (QA follow-up) Update test to use objects and module methods for creating needed data
Bug-19489-QA-follow-up-Update-test-to-use-objects-.patch (text/plain), 3.16 KB, created by
Kyle M Hall (khall)
on 2019-02-26 19:12:55 UTC
(
hide
)
Description:
Bug 19489: (QA follow-up) Update test to use objects and module methods for creating needed data
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2019-02-26 19:12:55 UTC
Size:
3.16 KB
patch
obsolete
>From dd51247069a1cbf3a87dc94e7896ca709dea4a4a Mon Sep 17 00:00:00 2001 >From: Josef Moravec <josef.moravec@gmail.com> >Date: Mon, 25 Feb 2019 21:33:12 +0000 >Subject: [PATCH] Bug 19489: (QA follow-up) Update test to use objects and > module methods for creating needed data > >Test plan: >prove t/db_dependent/Koha/Account/Lines.t > >Signed-off-by: Josef Moravec <josef.moravec@gmail.com> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > t/db_dependent/Koha/Account/Lines.t | 32 ++++++++++++++--------------- > 1 file changed, 15 insertions(+), 17 deletions(-) > >diff --git a/t/db_dependent/Koha/Account/Lines.t b/t/db_dependent/Koha/Account/Lines.t >index 3781fbb6e3..b6292c03cc 100755 >--- a/t/db_dependent/Koha/Account/Lines.t >+++ b/t/db_dependent/Koha/Account/Lines.t >@@ -22,6 +22,7 @@ use Modern::Perl; > use Test::More tests => 7; > use Test::Exception; > >+use C4::Circulation qw/AddIssue AddReturn/; > use Koha::Account; > use Koha::Account::Lines; > use Koha::Account::Offsets; >@@ -419,32 +420,29 @@ subtest 'checkout() tests' => sub { > > $schema->storage->txn_begin; > >- my $library = $builder->build( { source => 'Branch' } ); >- my $patron = $builder->build( { source => 'Borrower' } ); >- my $item = $builder->build( { source => 'Item' } ); >+ my $library = $builder->build_object( { class => 'Koha::Libraries' } ); >+ my $patron = $builder->build_object( { class => 'Koha::Patrons' } ); >+ my $item = $builder->build_sample_item; >+ my $account = $patron->account; > >- my $checkout = Koha::Checkout->new( >- { borrowernumber => $patron->{borrowernumber}, >- itemnumber => $item->{itemnumber}, >- branchcode => $library->{branchcode}, >- })->store; >+ t::lib::Mocks::mock_userenv({ branchcode => $library->branchcode }); >+ my $checkout = AddIssue( $patron->unblessed, $item->barcode ); > >- my $line = Koha::Account::Line->new( >- { >- borrowernumber => $patron->{borrowernumber}, >- itemnumber => $item->{itemnumber}, >- issue_id => $checkout->issue_id, >- accounttype => "F", >- amount => 10, >- })->store; >+ my $line = $account->add_debit({ >+ amount => 10, >+ item_id => $item->itemnumber, >+ issue_id => $checkout->issue_id, >+ type => 'fine', >+ }); > > my $line_checkout = $line->checkout; > is( ref($line_checkout), 'Koha::Checkout', 'Result type is correct' ); > is( $line_checkout->issue_id, $checkout->issue_id, 'Koha::Account::Line->checkout should return the correct checkout'); > >- my ( $returned, undef, $old_checkout) = C4::Circulation::AddReturn( $item->{barcode} ,$library->{branchcode} ); >+ my ( $returned, undef, $old_checkout) = C4::Circulation::AddReturn( $item->barcode, $library->branchcode ); > is( $returned, 1, 'The item should have been returned' ); > >+ $line = $line->get_from_storage; > my $old_line_checkout = $line->checkout; > is( ref($old_line_checkout), 'Koha::Old::Checkout', 'Result type is correct' ); > is( $old_line_checkout->issue_id, $old_checkout->issue_id, 'Koha::Account::Line->checkout should return the correct old_checkout' ); >-- >2.17.2 (Apple Git-113)
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 19489
:
81956
|
81989
|
81991
|
82519
|
82520
|
82614
|
82615
|
82846
|
83109
|
83110
|
83242
|
83276
|
83277
|
83299
|
83300
|
83301
|
83618
|
83619
|
83620
|
85236
|
85237
|
85275
|
85315
|
85668
|
85669
|
85670
|
85671
|
85672
|
85673
|
85674
|
85675
|
85731
|
85732
|
85733
|
85734
|
85735
| 85736 |
85737
|
85738