(self, *args, **kwargs)
| 182 | |
| 183 | class TestSaveLoad(RoundtripTest): |
| 184 | def roundtrip(self, *args, **kwargs): |
| 185 | RoundtripTest.roundtrip(self, np.save, *args, **kwargs) |
| 186 | assert_equal(self.arr[0], self.arr_reloaded) |
| 187 | assert_equal(self.arr[0].dtype, self.arr_reloaded.dtype) |
| 188 | assert_equal(self.arr[0].flags.fnc, self.arr_reloaded.flags.fnc) |
| 189 | |
| 190 | |
| 191 | class TestSavezLoad(RoundtripTest): |
no test coverage detected