(list_grouping_size)
| 30 | |
| 31 | |
| 32 | def test_flatten_list(list_grouping_size): |
| 33 | grouping, size = list_grouping_size |
| 34 | expected = list(range(size)) |
| 35 | result = flatten_grouping(grouping) |
| 36 | assert expected == result |
| 37 | assert len(result) == grouping_len(grouping) |
| 38 | |
| 39 | |
| 40 | def test_flatten_dict(dict_grouping_size): |
nothing calls this directly
no test coverage detected
searching dependent graphs…