From 6053ec400fa56e903c2bf173178d64ab0444264c Mon Sep 17 00:00:00 2001
From: Raphael Straub <raphael.straub@kit.edu>
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 <david@davidnind.com>
Signed-off-by: Victor Grousset/tuxayo <victor@tuxayo.net>
---
 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.46.1