(self, x, tmp_filename)
| 5327 | assert_array_equal(y, x.flat) |
| 5328 | |
| 5329 | def test_roundtrip(self, x, tmp_filename): |
| 5330 | x.tofile(tmp_filename) |
| 5331 | y = np.fromfile(tmp_filename, dtype=x.dtype) |
| 5332 | assert_array_equal(y, x.flat) |
| 5333 | |
| 5334 | def test_roundtrip_dump_pathlib(self, x, tmp_filename): |
| 5335 | p = pathlib.Path(tmp_filename) |
nothing calls this directly
no test coverage detected