(mixed_grouping_size)
| 57 | |
| 58 | |
| 59 | def test_flatten_mixed(mixed_grouping_size): |
| 60 | grouping, size = mixed_grouping_size |
| 61 | expected = list(range(size)) |
| 62 | result = flatten_grouping(grouping) |
| 63 | assert expected == result |
| 64 | assert len(result) == grouping_len(grouping) |
| 65 | |
| 66 | |
| 67 | def test_flatten_odd_value(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…