()
| 1765 | |
| 1766 | |
| 1767 | def test_py_filesystem(): |
| 1768 | handler = DummyHandler() |
| 1769 | fs = PyFileSystem(handler) |
| 1770 | assert isinstance(fs, PyFileSystem) |
| 1771 | assert fs.type_name == "py::dummy" |
| 1772 | assert fs.handler is handler |
| 1773 | |
| 1774 | with pytest.raises(TypeError): |
| 1775 | PyFileSystem(None) |
| 1776 | |
| 1777 | |
| 1778 | def test_py_filesystem_equality(): |
nothing calls this directly
no test coverage detected