You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
471 B
15 lines
471 B
import decimal
|
|
from unittest import TestCase
|
|
|
|
from pyutil import jsonutil as json
|
|
|
|
class TestDecode(TestCase):
|
|
def test_decimal(self):
|
|
rval = json.loads('1.1', parse_float=decimal.Decimal)
|
|
self.assert_(isinstance(rval, decimal.Decimal))
|
|
self.assertEquals(rval, decimal.Decimal('1.1'))
|
|
|
|
def test_float(self):
|
|
rval = json.loads('1', parse_int=float)
|
|
self.assert_(isinstance(rval, float))
|
|
self.assertEquals(rval, 1.0)
|
|
|