From d2ce5de68dd38d787ba9b63db148c53c71dd003d Mon Sep 17 00:00:00 2001
From: tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46>
Date: Tue, 15 May 2007 01:28:31 +0000
Subject: More testing updates

git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1193 4979c152-3d1c-0410-bac9-87ea11338e46
---
 t/02-number-handling.t | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/t/02-number-handling.t b/t/02-number-handling.t
index cad4eff3..95502666 100644
--- a/t/02-number-handling.t
+++ b/t/02-number-handling.t
@@ -64,7 +64,7 @@ foreach my $format (0 .. $#formats) {
 	my $thou = $formats[$format][1];
 	my $dec = $formats[$format][2];
 	foreach my $rawValue ('10t000d00', '9t999d99', '333d33', 
-			'7t777t777d77', '-12d34') {
+			'7t777t777d77', '-12d34', '0d00') {
 		$expected = $rawValue;
 		$expected =~ s/t/$thou/gx;
 		$expected =~ s/d/$dec/gx;
@@ -73,15 +73,23 @@ foreach my $format (0 .. $#formats) {
 		$value =~ s/d/\./gx;
 		##$value = Math::BigFloat->new($value);
 		$value = $form->parse_amount(\%myfooconfig,$value);
-		is($form->format_amount(\%myconfig, $value, 2, 'x'), $expected,
+		is($form->format_amount(\%myconfig, $value, 2, '0'), $expected,
 			"form: $value formatted as $formats[$format][0] - $expected");
 		is($lsmb->format_amount('user' => \%myconfig, 
 			'amount' => $value, 'precision' => 2, 
-			'neg_format' => 'x'), $expected,
+			'neg_format' => '0'), $expected,
 			"lsmb: $value formatted as $formats[$format][0] - $expected");
 	}
 }
 
+$expected = $form->parse_amount({'numberformat' => '1000.00'}, '0.00');
+is($form->format_amount({'numberformat' => '1000.00'} , $expected, 2, 'x'), 'x',
+	"form: 0.00 with dash x");
+is($lsmb->format_amount('user' => {'numberformat' => '1000.00'}, 
+	'amount' => $expected, 'precision' => 2, 
+	'neg_format' => 'x'), 'x',
+	"lsmb: 0.00 with dash x");
+
 foreach my $format (0 .. $#formats) {
 	%myconfig = (numberformat => $formats[$format][0]);
 	my $thou = $formats[$format][1];
-- 
cgit v1.2.3