Bugzilla – Attachment 77525 Details for
Bug 15408
Timestamp on funds not updated when you duplicate a budget
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Added unit tests to patch
Added-unit-tests-to-patch.patch (text/plain), 1.71 KB, created by
Nick Clemens (kidclamp)
on 2018-08-07 13:47:07 UTC
(
hide
)
Description:
Added unit tests to patch
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2018-08-07 13:47:07 UTC
Size:
1.71 KB
patch
obsolete
>From d9112e70efc5c095c0eb50507b7597e3c3b1cf1b Mon Sep 17 00:00:00 2001 >From: Baptiste Wojtkowski <baptiste.wojtkowski@biblibre.com> >Date: Tue, 7 Feb 2017 09:49:34 +0000 >Subject: [PATCH] Added unit tests to patch > >https://bugs.koha-community.org/show_bug.cgi?id=15408 > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >--- > t/db_dependent/Budgets.t | 16 +++++++++++++++- > 1 file changed, 15 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/Budgets.t b/t/db_dependent/Budgets.t >index e28e20c..1d9bcad 100755 >--- a/t/db_dependent/Budgets.t >+++ b/t/db_dependent/Budgets.t >@@ -1,6 +1,6 @@ > #!/usr/bin/perl > use Modern::Perl; >-use Test::More tests => 145; >+use Test::More tests => 146; > > BEGIN { > use_ok('C4::Budgets') >@@ -14,6 +14,7 @@ use Koha::Acquisition::Orders; > use Koha::Patrons; > > use t::lib::TestBuilder; >+use Koha::DateUtils; > > use YAML; > >@@ -488,6 +489,19 @@ my $budget_period_id_cloned = C4::Budgets::CloneBudgetPeriod( > my $budget_period_cloned = C4::Budgets::GetBudgetPeriod($budget_period_id_cloned); > is($budget_period_cloned->{budget_period_description}, 'Budget Period Cloned', 'Cloned budget\'s description is updated.'); > >+my $budget_cloned = C4::Budgets::GetBudgets({ budget_period_id => $budget_period_id_cloned }); >+my $test = $budget_cloned->[0]->{timestamp}; >+warn $test; >+my $budget_time = Koha::DateUtils::dt_from_string($test); >+my $local_time = Koha::DateUtils::dt_from_string(); >+warn $budget_time; >+warn $local_time; >+ >+ >+is(DateTime::compare($budget_time, $local_time), 0); >+ >+ >+ > my $budget_hierarchy = GetBudgetHierarchy($budget_period_id); > my $budget_hierarchy_cloned = GetBudgetHierarchy($budget_period_id_cloned); > >-- >2.1.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 15408
:
59886
|
59887
|
59890
|
59974
|
60244
|
60337
|
60338
|
60339
|
62985
|
62986
|
62987
|
65181
|
65182
|
65183
|
77524
|
77525
|
77526
|
77527
|
77539
|
77540
|
77541
|
77542