(pipe, layout)
| 219 | |
| 220 | |
| 221 | def check_layout(pipe, layout): |
| 222 | pipe.build() |
| 223 | capture_processes(pipe._py_pool) |
| 224 | while True: |
| 225 | try: |
| 226 | (res,) = pipe.run() |
| 227 | assert res.layout() == layout |
| 228 | except StopIteration: |
| 229 | break |
nothing calls this directly
no test coverage detected