Exemple #1
0
 def test_get_field_no_exists(self):
     schema = Schema()
     assert schema._get_field('hello') is None
Exemple #2
0
 def test_get_field_exists(self):
     schema = Schema()
     schema._fields['hello'] = 'x'
     assert schema._get_field('hello') == 'x'