(self)
| 52 | pass |
| 53 | |
| 54 | def test_cannot_migrate(self): |
| 55 | with pytest.raises( |
| 56 | exceptions.FlowReadException, |
| 57 | match="cannot read files with flow format version 0", |
| 58 | ): |
| 59 | for _ in FlowReader(io.BytesIO(b"14:7:version;1:0#}")).stream(): |
| 60 | pass |
nothing calls this directly
no test coverage detected