def test_dictalchemy_include(self):
     m = WithHybrid(2)
     m.fromdict({'value': 7})
     assert m.value == 2
     setattr(m, 'dictalchemy_include', ['value'])
     m.fromdict({'value': 7})
     assert m.value == 7
示例#2
0
 def test_dictalchemy_include(self):
     m = WithHybrid(2)
     m.fromdict({'value': 7})
     assert m.value == 2
     setattr(m, 'dictalchemy_include', ['value'])
     m.fromdict({'value': 7})
     assert m.value == 7
示例#3
0
 def test_dictalchemy_include(self):
     m = WithHybrid(2)
     m.fromdict({'id': 7})
     assert m.id == 2
     setattr(m, 'dictalchemy_include', ['id'])
     m.fromdict({'id': 7})
     assert m.id == 7
示例#4
0
 def test_dictalchemy_include(self):
     m = WithHybrid(2)
     m.fromdict({'id': 7})
     assert m.id == 2
     setattr(m, 'dictalchemy_include', ['id'])
     m.fromdict({'id': 7})
     assert m.id == 7
 def test_dictalchemy_asdict_include_overrides(self):
     m = WithHybrid(2)
     m.fromdict({'value': 7})
     assert m.value == 2
     setattr(m, 'dictalchemy_include', ['value'])
     m.fromdict({'value': 7})
     setattr(m, 'dictalchemy_fromdict_include', [])
     m.fromdict({'value': 2})
     assert m.value == 7
示例#6
0
 def test_dictalchemy_asdict_include_overrides(self):
     m = WithHybrid(2)
     m.fromdict({'value': 7})
     assert m.value == 2
     setattr(m, 'dictalchemy_include', ['value'])
     m.fromdict({'value': 7})
     setattr(m, 'dictalchemy_fromdict_include', [])
     m.fromdict({'value': 2})
     assert m.value == 7
 def test_include(self):
     h = WithHybrid(1)
     h.fromdict({'value': 17}, include=['value'])
     assert h.value == 17
示例#8
0
 def test_include(self):
     h = WithHybrid(1)
     h.fromdict({'value': 17}, include=['value'])
     assert h.value == 17
示例#9
0
 def test_include(self):
     h = WithHybrid(1)
     h.fromdict({'id': 17}, include=['id'])
     assert h.id == 17
示例#10
0
 def test_include(self):
     h = WithHybrid(1)
     h.fromdict({'id': 17}, include=['id'])
     assert h.id == 17