diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-10-23 09:33:16 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-10-23 09:42:48 +0200 |
commit | 4538130790da2ef2affda53b40375feaae3414f1 (patch) | |
tree | 365199f0c76a1ab36028d797410ba4e319466b1a /src/test/rpc_tests.cpp | |
parent | 58daa0162cb97209d87f3034a9351688a4631eac (diff) |
Add test for monetary value formatting
Tests for issue #3126.
This problem pops up after upgrading json-spirit.
Diffstat (limited to 'src/test/rpc_tests.cpp')
-rw-r--r-- | src/test/rpc_tests.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/rpc_tests.cpp b/src/test/rpc_tests.cpp index 35eabed0e2..b771c0c4b9 100644 --- a/src/test/rpc_tests.cpp +++ b/src/test/rpc_tests.cpp @@ -168,4 +168,14 @@ BOOST_AUTO_TEST_CASE(rpc_rawsign) BOOST_CHECK(find_value(r.get_obj(), "complete").get_bool() == true); } +BOOST_AUTO_TEST_CASE(rpc_format_monetary_values) +{ + BOOST_CHECK(write_string(Value(0.0), false) == "0.00000000"); + BOOST_CHECK(write_string(Value(1.0), false) == "1.00000000"); + BOOST_CHECK(write_string(Value(0.5), false) == "0.50000000"); + BOOST_CHECK(write_string(Value(0.00000001), false) == "0.00000001"); + BOOST_CHECK(write_string(Value(0.17622195), false) == "0.17622195"); + BOOST_CHECK(write_string(Value(0.89898989), false) == "0.89898989"); +} + BOOST_AUTO_TEST_SUITE_END() |