(scalar_grouping_size)
| 134 | |
| 135 | # Test map_grouping |
| 136 | def test_map_grouping_scalar(scalar_grouping_size): |
| 137 | grouping, size = scalar_grouping_size |
| 138 | result = map_grouping(lambda x: x * 2 + 5, grouping) |
| 139 | expected = grouping * 2 + 5 |
| 140 | assert expected == result |
| 141 | |
| 142 | |
| 143 | def test_map_grouping_list(list_grouping_size): |
nothing calls this directly
no test coverage detected
searching dependent graphs…