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