(locations)
| 87 | ], |
| 88 | ) |
| 89 | def test_validate_multi_locations(locations): |
| 90 | outcome = validate_multi_locations(locations) |
| 91 | assert outcome == [[[0, 5], [1, 6], [2, 7]], [[3, 8], [4, 9]]] |
| 92 | |
| 93 | |
| 94 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected