def test_model_with_prop(self): with_prop = WithProp(country="FR", public_field="test") self.assertEqual(with_prop.country.code, "FR") self.assertEqual(with_prop.public_field, "test")
def test_model_with_prop(self): with_prop = WithProp(country='FR', public_field='test') self.assertEqual(with_prop.country.code, 'FR') self.assertEqual(with_prop.public_field, 'test')