()
| 1515 | |
| 1516 | |
| 1517 | def test_native_file_open_error(): |
| 1518 | with assert_file_not_found(): |
| 1519 | pa.OSFile('non_existent_file', 'rb') |
| 1520 | with assert_file_not_found(): |
| 1521 | pa.memory_map('non_existent_file', 'rb') |
| 1522 | |
| 1523 | |
| 1524 | # ---------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected