当前位置: 首页>>代码示例>>Python>>正文


Python Named.fromdict方法代码示例

本文整理汇总了Python中dictalchemy.tests.Named.fromdict方法的典型用法代码示例。如果您正苦于以下问题:Python Named.fromdict方法的具体用法?Python Named.fromdict怎么用?Python Named.fromdict使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在dictalchemy.tests.Named的用法示例。


在下文中一共展示了Named.fromdict方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_excluded_pk_with_allow_pk_will_not_be_changed

# 需要导入模块: from dictalchemy.tests import Named [as 别名]
# 或者: from dictalchemy.tests.Named import fromdict [as 别名]
 def test_excluded_pk_with_allow_pk_will_not_be_changed(self):
     named = Named('a name')
     self.session.add(named)
     self.session.commit()
     original_id = named.id
     named.fromdict({'id': original_id + 1}, allow_pk=True, exclude=['id'])
     assert named.id == original_id
开发者ID:danielholmstrom,项目名称:dictalchemy,代码行数:9,代码来源:test_fromdict.py

示例2: test_dictalchemy_include_doesnt_override_pk

# 需要导入模块: from dictalchemy.tests import Named [as 别名]
# 或者: from dictalchemy.tests.Named import fromdict [as 别名]
 def test_dictalchemy_include_doesnt_override_pk(self):
     h = Named('a name')
     try:
         h.fromdict({'id': 1}, include=['id'])
         assert False
     except DictalchemyError:
         assert True
开发者ID:Myconomy,项目名称:dictalchemy,代码行数:9,代码来源:test_fromdict.py

示例3: test_fromdict_allow_pk

# 需要导入模块: from dictalchemy.tests import Named [as 别名]
# 或者: from dictalchemy.tests.Named import fromdict [as 别名]
 def test_fromdict_allow_pk(self):
     s = self.session
     named = Named('a name')
     s.add(named)
     s.commit()
     new = {'id': 7}
     named.fromdict(new, allow_pk=True)
     assert named.asdict() == {'id': new['id'], 'name': named.name}
开发者ID:Myconomy,项目名称:dictalchemy,代码行数:10,代码来源:test_fromdict.py

示例4: test_simple

# 需要导入模块: from dictalchemy.tests import Named [as 别名]
# 或者: from dictalchemy.tests.Named import fromdict [as 别名]
 def test_simple(self):
     s = self.session
     named = Named('a name')
     s.add(named)
     s.commit()
     new = {'name': 'other name'}
     named.fromdict(new)
     assert named.asdict() == {'id': named.id, 'name': new['name']}
开发者ID:Myconomy,项目名称:dictalchemy,代码行数:10,代码来源:test_fromdict.py

示例5: test_exluded_pk_will_not_raise_exception

# 需要导入模块: from dictalchemy.tests import Named [as 别名]
# 或者: from dictalchemy.tests.Named import fromdict [as 别名]
    def test_exluded_pk_will_not_raise_exception(self):
        named = Named('a name')
        self.session.add(named)
        self.session.commit()
        original_id = named.id

        named.fromdict({'id': original_id + 1}, exclude=['id'])
        assert named.id == original_id
开发者ID:danielholmstrom,项目名称:dictalchemy,代码行数:10,代码来源:test_fromdict.py

示例6: test_simple_aborts_on_pk

# 需要导入模块: from dictalchemy.tests import Named [as 别名]
# 或者: from dictalchemy.tests.Named import fromdict [as 别名]
 def test_simple_aborts_on_pk(self):
     s = self.session
     named = Named('a name')
     s.add(named)
     s.commit()
     new = {'id': 7}
     try:
         named.fromdict(new)
     except:
         pass
     else:
         assert False
开发者ID:Myconomy,项目名称:dictalchemy,代码行数:14,代码来源:test_fromdict.py

示例7: test_exclude

# 需要导入模块: from dictalchemy.tests import Named [as 别名]
# 或者: from dictalchemy.tests.Named import fromdict [as 别名]
 def test_exclude(self):
     h = Named('a name')
     h.fromdict({'name': 'other name'}, exclude=['name'])
     assert h.name == 'a name'
开发者ID:Myconomy,项目名称:dictalchemy,代码行数:6,代码来源:test_fromdict.py

示例8: test_only_overrides_exclude

# 需要导入模块: from dictalchemy.tests import Named [as 别名]
# 或者: from dictalchemy.tests.Named import fromdict [as 别名]
 def test_only_overrides_exclude(self):
     named = Named('a name')
     named.fromdict({'name': 'other name'}, exclude='name', only=['name'])
     assert named.name == 'other name'
开发者ID:Myconomy,项目名称:dictalchemy,代码行数:6,代码来源:test_fromdict.py

示例9: test_only

# 需要导入模块: from dictalchemy.tests import Named [as 别名]
# 或者: from dictalchemy.tests.Named import fromdict [as 别名]
 def test_only(self):
     named = Named('a name')
     named.fromdict({'name': 'other name'}, only=['name'])
     assert named.name == 'other name'
     named.fromdict({'name': 'other name'}, only=['id'])
     assert named.name == 'other name'
开发者ID:Myconomy,项目名称:dictalchemy,代码行数:8,代码来源:test_fromdict.py


注:本文中的dictalchemy.tests.Named.fromdict方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。