Exemplo n.º 1
0
 def test_returns_not_found_if_value_None(self):
     retu = find_dict_in_list(self.l, 'foo', None)
     self.assertEqual(retu, {})
Exemplo n.º 2
0
 def test_returns_custom_not_found(self):
     retu = find_dict_in_list(self.l, 'foo', 'foo', not_found="foo")
     self.assertEqual(retu, "foo")
Exemplo n.º 3
0
 def test_returns_first_occurence(self):
     retu = find_dict_in_list(self.l, 'foo', 'bar')
     self.assertEqual(retu, {"foo": "bar", "bar": "faz"})
Exemplo n.º 4
0
 def test_finds_dict(self):
     retu = find_dict_in_list(self.l, 'foo', 'faz')
     self.assertEqual(retu, {"foo": "faz"})
Exemplo n.º 5
0
 def test_returns_not_found(self):
     retu = find_dict_in_list(self.l, 'foo', 'foo')
     self.assertEqual(retu, {})
Exemplo n.º 6
0
 def test_returns_not_found_if_value_None(self):
     retu = find_dict_in_list(self.l, 'foo', None)
     self.assertEqual(retu, {})
Exemplo n.º 7
0
 def test_returns_first_occurence(self):
     retu = find_dict_in_list(self.l, 'foo', 'bar')
     self.assertEqual(retu, {"foo": "bar", "bar": "faz"})
Exemplo n.º 8
0
 def test_returns_custom_not_found(self):
     retu = find_dict_in_list(self.l, 'foo', 'foo', not_found="foo")
     self.assertEqual(retu, "foo")
Exemplo n.º 9
0
 def test_returns_not_found(self):
     retu = find_dict_in_list(self.l, 'foo', 'foo')
     self.assertEqual(retu, {})
Exemplo n.º 10
0
 def test_finds_dict(self):
     retu = find_dict_in_list(self.l, 'foo', 'faz')
     self.assertEqual(retu, {"foo": "faz"})