(self)
| 168 | self.roundtrip(a, file_on_disk=True, load_kwds={'mmap_mode': 'r'}) |
| 169 | |
| 170 | def test_record(self): |
| 171 | a = np.array([(1, 2), (3, 4)], dtype=[('x', 'i4'), ('y', 'i4')]) |
| 172 | self.check_roundtrips(a) |
| 173 | |
| 174 | @pytest.mark.slow |
| 175 | def test_format_2_0(self): |
nothing calls this directly
no test coverage detected