(self)
| 252 | @pytest.mark.skipif(string_to_longdouble_inaccurate, |
| 253 | reason="Need strtold_l") |
| 254 | def test_tofile_roundtrip(self): |
| 255 | with temppath() as path: |
| 256 | self.tgt.tofile(path, sep=" ") |
| 257 | res = np.fromfile(path, dtype=np.longdouble, sep=" ") |
| 258 | assert_equal(res, self.tgt) |
| 259 | |
| 260 | |
| 261 | # Conversions long double -> string |
nothing calls this directly
no test coverage detected