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