(self)
| 248 | @pytest.mark.skipif(string_to_longdouble_inaccurate, |
| 249 | reason="Need strtold_l") |
| 250 | def test_genfromtxt(self): |
| 251 | with temppath() as path: |
| 252 | with open(path, 'w') as f: |
| 253 | f.write(self.out) |
| 254 | res = np.genfromtxt(path, dtype=np.longdouble) |
| 255 | assert_equal(res, self.tgt) |
| 256 | |
| 257 | @pytest.mark.skipif(string_to_longdouble_inaccurate, |
| 258 | reason="Need strtold_l") |
nothing calls this directly
no test coverage detected