本文整理匯總了Python中modules.Convert.ConvertType.from_json方法的典型用法代碼示例。如果您正苦於以下問題:Python ConvertType.from_json方法的具體用法?Python ConvertType.from_json怎麽用?Python ConvertType.from_json使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類modules.Convert.ConvertType
的用法示例。
在下文中一共展示了ConvertType.from_json方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_json
# 需要導入模塊: from modules.Convert import ConvertType [as 別名]
# 或者: from modules.Convert.ConvertType import from_json [as 別名]
def test_json(self):
# Set up test objects
test_repo = ConvertRepo()
test_type = ConvertType(test_repo, "test_type")
test_type.decimals = 4
test_unitb = ConvertUnit(test_type, ["base_unit"], 1)
test_type.base_unit = test_unitb
test_unit1 = ConvertUnit(test_type, ["name1", "name2"], 1337)
test_unit2 = ConvertUnit(test_type, ["name3", "name4"], 505)
test_unit2.add_abbr("u2")
test_type.add_unit(test_unit1)
test_type.add_unit(test_unit2)
# Collapse to XML and rebuild
test_json = test_type.to_json()
rebuild_type = ConvertType.from_json(test_repo, test_json)
# Test the type
assert rebuild_type.repo == test_repo
assert len(rebuild_type.unit_list) == 2
assert rebuild_type.name == "test_type"
assert rebuild_type.decimals == 4
assert rebuild_type.base_unit.name_list[0] == "base_unit"