()
| 196 | |
| 197 | |
| 198 | def test_python_file_readall(): |
| 199 | data = b'some sample data' |
| 200 | |
| 201 | buf = BytesIO(data) |
| 202 | with pa.PythonFile(buf, mode='r') as f: |
| 203 | assert f.readall() == data |
| 204 | |
| 205 | |
| 206 | def test_python_file_readinto(): |
nothing calls this directly
no test coverage detected