Bugzilla – Attachment 85221 Details for
Bug 21692
Koha::Account->new has no tests
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21692: created a test for Koha::Account->new
Bug-21692-created-a-test-for-KohaAccount-new.patch (text/plain), 1.88 KB, created by
Katrin Fischer
on 2019-02-17 11:44:40 UTC
(
hide
)
Description:
Bug 21692: created a test for Koha::Account->new
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2019-02-17 11:44:40 UTC
Size:
1.88 KB
patch
obsolete
>From f3401086b55eb7bc972dac82b0c4d4442574d64b Mon Sep 17 00:00:00 2001 >From: Jasmine Amohia <jasmineamohia.student@wegc.school.nz> >Date: Thu, 17 Jan 2019 03:33:49 +0000 >Subject: [PATCH] Bug 21692: created a test for Koha::Account->new > >Test plan: >1) Run test for /Koha/Account.t and confirm that all tests were >successful > >Signed-off-by: David Nind <david@davidnind.com> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > t/db_dependent/Koha/Account.t | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > >diff --git a/t/db_dependent/Koha/Account.t b/t/db_dependent/Koha/Account.t >index 4a79485095..27d5756477 100755 >--- a/t/db_dependent/Koha/Account.t >+++ b/t/db_dependent/Koha/Account.t >@@ -27,6 +27,7 @@ use Koha::Account; > use Koha::Account::Lines; > use Koha::Account::Offsets; > >+ > use t::lib::Mocks; > use t::lib::TestBuilder; > >@@ -62,7 +63,6 @@ subtest 'outstanding_debits() tests' => sub { > is( ref($lines_arr[$i]), 'Koha::Account::Line', 'outstanding_debits returns a list of Koha::Account::Line objects in list context' ); > $i++; > } >- > my $patron_2 = $builder->build_object({ class => 'Koha::Patrons' }); > Koha::Account::Line->new({ borrowernumber => $patron_2->id, amountoutstanding => -2 })->store; > my $just_one = Koha::Account::Line->new({ borrowernumber => $patron_2->id, amount => 3, amountoutstanding => 3 })->store; >@@ -141,7 +141,7 @@ subtest 'outstanding_credits() tests' => sub { > > subtest 'add_credit() tests' => sub { > >- plan tests => 15; >+ plan tests => 16; > > $schema->storage->txn_begin; > >@@ -151,6 +151,7 @@ subtest 'add_credit() tests' => sub { > > my $patron = $builder->build_object( { class => 'Koha::Patrons' } ); > my $account = Koha::Account->new( { patron_id => $patron->borrowernumber } ); >+ is( defined $account, 1, "Account is defined" ); > > is( $account->balance, 0, 'Patron has no balance' ); > >-- >2.11.0
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 21692
:
84121
|
84154
|
85221
|
85311
|
85312
|
85313