()
| 1490 | |
| 1491 | |
| 1492 | def test_native_file_open_error(): |
| 1493 | with assert_file_not_found(): |
| 1494 | pa.OSFile('non_existent_file', 'rb') |
| 1495 | with assert_file_not_found(): |
| 1496 | pa.memory_map('non_existent_file', 'rb') |
| 1497 | |
| 1498 | |
| 1499 | # ---------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected