Ejemplo n.º 1
0
 def test_dictionary_field_to_python_empty_dict(self):
     ret = DictionaryField()
     input_value = ['test1', 'test2']
     res = ret.to_python(value=input_value)
     self.assertDictEqual({}, res)
Ejemplo n.º 2
0
 def test_dictionary_field_to_python_str(self, mock_jl):
     ret = DictionaryField()
     ret.to_python(value='foo')
     mock_jl.assert_called_with('foo')
Ejemplo n.º 3
0
 def test_dictionary_field_to_python_dict(self):
     ret = DictionaryField()
     input_dict = {'name': 'foo', 'extra': 'bar'}
     res = ret.to_python(value=input_dict)
     self.assertDictEqual(input_dict, res)
Ejemplo n.º 4
0
 def test_dictionary_field_to_python_none(self):
     ret = DictionaryField()
     self.assertIsNone(ret.to_python(value=None))
Ejemplo n.º 5
0
 def test_dictionary_field_to_python_empty_str(self):
     ret = DictionaryField()
     self.assertDictEqual({}, ret.to_python(value=""))
Ejemplo n.º 6
0
 def test_dictionary_field_to_python_empty_dict(self):
     ret = DictionaryField()
     input_value = ['test1', 'test2']
     res = ret.to_python(value=input_value)
     self.assertDictEqual({}, res)
Ejemplo n.º 7
0
 def test_dictionary_field_to_python_dict(self):
     ret = DictionaryField()
     input_dict = {'name': 'foo', 'extra': 'bar'}
     res = ret.to_python(value=input_dict)
     self.assertDictEqual(input_dict, res)
Ejemplo n.º 8
0
 def test_dictionary_field_to_python_str(self, mock_jl):
     ret = DictionaryField()
     ret.to_python(value='foo')
     mock_jl.assert_called_with('foo')
Ejemplo n.º 9
0
 def test_dictionary_field_to_python_empty_str(self):
     ret = DictionaryField()
     self.assertDictEqual({}, ret.to_python(value=""))
Ejemplo n.º 10
0
 def test_dictionary_field_to_python_none(self):
     ret = DictionaryField()
     self.assertIsNone(ret.to_python(value=None))