(self)
| 63 | del fp |
| 64 | |
| 65 | def test_attributes(self): |
| 66 | offset = 1 |
| 67 | mode = "w+" |
| 68 | fp = memmap(self.tmpfp, dtype=self.dtype, mode=mode, |
| 69 | shape=self.shape, offset=offset) |
| 70 | assert_equal(offset, fp.offset) |
| 71 | assert_equal(mode, fp.mode) |
| 72 | del fp |
| 73 | |
| 74 | def test_filename(self, tmp_path): |
| 75 | tmpname = tmp_path / "mmap" |
nothing calls this directly
no test coverage detected