(self)
| 41 | pass # should never raise anything else. |
| 42 | |
| 43 | def test_empty(self): |
| 44 | assert list(FlowReader(io.BytesIO(b"")).stream()) == [] |
| 45 | |
| 46 | def test_unknown_type(self): |
| 47 | with pytest.raises(exceptions.FlowReadException, match="Unknown flow type"): |
nothing calls this directly
no test coverage detected