(self)
| 19 | self.assertEqual(list_value, [1, 2, 3]) |
| 20 | |
| 21 | def test_single_value(self): |
| 22 | values_dict = {'list_key': 'hello'} |
| 23 | list_value = read_list(values_dict, 'list_key') |
| 24 | self.assertEqual(list_value, ['hello']) |
| 25 | |
| 26 | def test_empty_single_value(self): |
| 27 | values_dict = {'list_key': ''} |
nothing calls this directly
no test coverage detected