(scalar_grouping_size)
| 22 | |
| 23 | # Test flatten_grouping and grouping_len |
| 24 | def test_flatten_scalar(scalar_grouping_size): |
| 25 | grouping, size = scalar_grouping_size |
| 26 | expected = list(range(size)) |
| 27 | result = flatten_grouping(grouping) |
| 28 | assert expected == result |
| 29 | assert len(result) == grouping_len(grouping) |
| 30 | |
| 31 | |
| 32 | def test_flatten_list(list_grouping_size): |
nothing calls this directly
no test coverage detected
searching dependent graphs…