Bugzilla – Attachment 156433 Details for
Bug 34967
Move Prices.t to t/db_dependent
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 34967: Add sample biblios and tidy some lines
Bug-34967-Add-sample-biblios-and-tidy-some-lines.patch (text/plain), 4.33 KB, created by
Marcel de Rooy
on 2023-09-30 06:33:11 UTC
(
hide
)
Description:
Bug 34967: Add sample biblios and tidy some lines
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2023-09-30 06:33:11 UTC
Size:
4.33 KB
patch
obsolete
>From 67ccb7f8553a50b76e852d7b0ae61413e25c715f Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Fri, 29 Sep 2023 16:01:13 +0000 >Subject: [PATCH] Bug 34967: Add sample biblios and tidy some lines >Content-Type: text/plain; charset=utf-8 > >Test plan: >Run t/Prices.t > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > t/Prices.t | 25 ++++++++++++++++--------- > 1 file changed, 16 insertions(+), 9 deletions(-) > >diff --git a/t/Prices.t b/t/Prices.t >index 2215b0be93..2b4ade38ac 100755 >--- a/t/Prices.t >+++ b/t/Prices.t >@@ -20,7 +20,7 @@ subtest 'Tests from t' => sub { > t::lib::Mocks::mock_preference( 'TaxRates', '0.02|0.05|0.196' ); > my $bookseller_module = Test::MockModule->new('Koha::Acquisition::Bookseller'); > >- my ( @booksellers, @baskets ); >+ my ( @booksellers, @baskets, @biblios ); > my @names = ( '0 0', '0 1', '1 0', '1 1' ); > foreach my $i ( 1..4 ) { > push @booksellers, $builder->build_object( >@@ -37,6 +37,7 @@ subtest 'Tests from t' => sub { > { basketname => $names[ $i - 1 ], booksellerid => $booksellers[$i-1]->id } > } > ); >+ push @biblios, $builder->build_sample_biblio; > } > > my ( $basketno_0_0, $basketno_0_1, $basketno_1_0, $basketno_1_1 ) = map { $_->id } @baskets; >@@ -48,7 +49,7 @@ subtest 'Tests from t' => sub { > subtest 'Configuration 1: 0 0 (Vendor List prices do not include tax / Invoice prices do not include tax)' => sub { > plan tests => 8; > >- my $biblionumber_0_0 = 42; >+ my $biblionumber_0_0 = $biblios[0]->id; > > my $order_0_0 = Koha::Acquisition::Order->new({ > biblionumber => $biblionumber_0_0, >@@ -139,7 +140,7 @@ subtest 'Tests from t' => sub { > subtest 'Configuration 1: 1 1 (Vendor List prices do include tax / Invoice prices include tax)' => sub { > plan tests => 11; > >- my $biblionumber_1_1 = 43; >+ my $biblionumber_1_1 = $biblios[3]->id; > my $order_1_1 = Koha::Acquisition::Order->new({ > biblionumber => $biblionumber_1_1, > quantity => 2, >@@ -276,7 +277,7 @@ subtest 'Tests from t' => sub { > subtest 'Configuration 1: 1 0 (Vendor List prices include tax / Invoice prices do not include tax)' => sub { > plan tests => 9; > >- my $biblionumber_1_0 = 44; >+ my $biblionumber_1_0 = $biblios[2]->id; > my $order_1_0 = Koha::Acquisition::Order->new({ > biblionumber => $biblionumber_1_0, > quantity => 2, >@@ -381,7 +382,7 @@ subtest 'Tests from t' => sub { > subtest 'Configuration 1: 0 1 (Vendor List prices do not include tax / Invoice prices include tax)' => sub { > plan tests => 9; > >- my $biblionumber_0_1 = 45; >+ my $biblionumber_0_1 = $biblios[1]->id; > my $order_0_1 = Koha::Acquisition::Order->new({ > biblionumber => $biblionumber_0_1, > quantity => 2, >@@ -488,15 +489,21 @@ subtest 'Tests from t' => sub { > is( > Koha::Number::Price->new( $params->{got} )->format, > Koha::Number::Price->new( $params->{expected} )->format, >- "configuration $params->{conf}: $params->{field} should be correctly calculated" >+ "configuration $params->{conf}: $params->{field} should be correctly calculated" > ); > } > > # format_for_editing >- for my $currency_format ( qw( US FR ) ) { >+ for my $currency_format (qw( US FR )) { > t::lib::Mocks::mock_preference( 'CurrencyFormat', $currency_format ); >- is( Koha::Number::Price->new( 1234567 )->format_for_editing, '1234567.00', 'format_for_editing should return unformated integer part with 2 decimals' ); >- is( Koha::Number::Price->new( 1234567.89 )->format_for_editing, '1234567.89', 'format_for_editing should return unformated integer part with 2 decimals' ); >+ is( >+ Koha::Number::Price->new(1234567)->format_for_editing, '1234567.00', >+ 'format_for_editing should return unformated integer part with 2 decimals' >+ ); >+ is( >+ Koha::Number::Price->new(1234567.89)->format_for_editing, '1234567.89', >+ 'format_for_editing should return unformated integer part with 2 decimals' >+ ); > } > }; > >-- >2.30.2
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 34967
:
156432
|
156433
|
156434
|
156487
|
156488
|
156489