(list_grouping_size)
| 141 | |
| 142 | |
| 143 | def test_map_grouping_list(list_grouping_size): |
| 144 | grouping, size = list_grouping_size |
| 145 | result = map_grouping(lambda x: x * 2 + 5, grouping) |
| 146 | expected = [g * 2 + 5 for g in grouping] |
| 147 | assert expected == result |
| 148 | |
| 149 | |
| 150 | def test_map_grouping_dict(dict_grouping_size): |
nothing calls this directly
no test coverage detected
searching dependent graphs…