(self)
| 173 | |
| 174 | @pytest.mark.slow |
| 175 | def test_format_2_0(self): |
| 176 | dt = [(("%d" % i) * 100, float) for i in range(500)] |
| 177 | a = np.ones(1000, dtype=dt) |
| 178 | with warnings.catch_warnings(record=True): |
| 179 | warnings.filterwarnings('always', '', UserWarning) |
| 180 | self.check_roundtrips(a) |
| 181 | |
| 182 | |
| 183 | class TestSaveLoad(RoundtripTest): |
nothing calls this directly
no test coverage detected