(self)
| 266 | @pytest.mark.skipif(string_to_longdouble_inaccurate, |
| 267 | reason="Need strtold_l") |
| 268 | def test_tofile_roundtrip(self): |
| 269 | with temppath() as path: |
| 270 | self.tgt.tofile(path, sep=" ") |
| 271 | res = np.fromfile(path, dtype=np.longdouble, sep=" ") |
| 272 | assert_equal(res, self.tgt) |
| 273 | |
| 274 | |
| 275 | # Conversions long double -> string |
nothing calls this directly
no test coverage detected