def test_to_dict_null(self): f = Field('test') f.value = 'foo' assert_equals(f.to_dict(), {'test': 'foo'})
def test_init_as_null(self): f = Field('test') assert_is_none(f.value)
def test_to_dict_null(self): f = Field('test') assert_equals(f.to_dict(), {'test': None})
def test_set_value(self): f = Field('test') f.set_value('foo') assert_equals(f.value, 'foo')