Bugzilla – Attachment 59974 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.61 KB, created by
Baptiste Wojtkowski (bwoj)
on 2017-02-07 09:54:44 UTC
(
hide
)
Description:
Added unit tests to patch
Filename:
MIME Type:
Creator:
Baptiste Wojtkowski (bwoj)
Created:
2017-02-07 09:54:44 UTC
Size:
1.61 KB
patch
obsolete
>From 08a1bca24a360d585085236db8d57e7ee2407be9 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 >--- > 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 0611389..3a9179c 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 => 142; >+use Test::More tests => 143; > > BEGIN { > use_ok('C4::Budgets') >@@ -14,6 +14,7 @@ use Koha::Acquisition::Order; > use Koha::Acquisition::Booksellers; > > use t::lib::TestBuilder; >+use Koha::DateUtils; > > use YAML; > >@@ -389,6 +390,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.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 15408
:
59886
|
59887
|
59890
|
59974
|
60244
|
60337
|
60338
|
60339
|
62985
|
62986
|
62987
|
65181
|
65182
|
65183
|
77524
|
77525
|
77526
|
77527
|
77539
|
77540
|
77541
|
77542