(self)
| 56 | del fp |
| 57 | |
| 58 | def test_attributes(self): |
| 59 | offset = 1 |
| 60 | mode = "w+" |
| 61 | fp = memmap(self.tmpfp, dtype=self.dtype, mode=mode, |
| 62 | shape=self.shape, offset=offset) |
| 63 | assert_equal(offset, fp.offset) |
| 64 | assert_equal(mode, fp.mode) |
| 65 | del fp |
| 66 | |
| 67 | def test_filename(self, tmp_path): |
| 68 | tmpname = tmp_path / "mmap" |
nothing calls this directly
no test coverage detected