From ac0fcd4a3c7772cfab0e925c97c99058d66b892e Mon Sep 17 00:00:00 2001 From: Raphael Straub Date: Thu, 8 Feb 2024 14:17:56 +0000 Subject: [PATCH] Bug 36049: Add unit test Sponsored-by: Karlsruhe Institute of Technology (KIT) Signed-off-by: David Nind --- t/Number/Price.t | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/t/Number/Price.t b/t/Number/Price.t index ce607a83a1..9017fe793e 100755 --- a/t/Number/Price.t +++ b/t/Number/Price.t @@ -1,6 +1,6 @@ use Modern::Perl; -use Test::More tests => 35; +use Test::More tests => 36; use Test::MockModule; use t::lib::Mocks; @@ -136,6 +136,9 @@ is( Koha::Number::Price->new(3)->unformat, '3', 'CHF: unformat 3' ); is( Koha::Number::Price->new(1234567890)->unformat, '1234567890', 'CHF: unformat 1234567890' ); +# Rounding +is( Koha::Number::Price->new(17.955)->round, '17.96', 'Round 17.955' ); + subtest 'Changes for format' => sub { # See also bug 18736 plan tests => 3; -- 2.44.0