(self)
| 99 | del fp |
| 100 | |
| 101 | def test_filename_fileobj(self): |
| 102 | fp = memmap(self.tmpfp, dtype=self.dtype, mode="w+", |
| 103 | shape=self.shape) |
| 104 | assert_equal(fp.filename, self.tmpfp.name) |
| 105 | |
| 106 | @pytest.mark.skipif(sys.platform == 'gnu0', |
| 107 | reason="Known to fail on hurd") |
nothing calls this directly
no test coverage detected