(dict_grouping_size)
| 38 | |
| 39 | |
| 40 | def test_flatten_dict(dict_grouping_size): |
| 41 | grouping, size = dict_grouping_size |
| 42 | expected = list(range(size)) |
| 43 | result = flatten_grouping(grouping) |
| 44 | assert expected == result |
| 45 | assert len(result) == grouping_len(grouping) |
| 46 | |
| 47 | |
| 48 | def test_flatten_dict_key_order(dict_grouping_size): |
nothing calls this directly
no test coverage detected
searching dependent graphs…