(self)
| 231 | assert_identical(actual, expected) |
| 232 | |
| 233 | def test_ufunc_pickle(self): |
| 234 | a = 1.0 |
| 235 | cos_pickled = pickle.loads(pickle.dumps(xu.cos)) |
| 236 | assert_identical(cos_pickled(a), xu.cos(a)) |
| 237 | |
| 238 | def test_ufunc_scalar(self): |
| 239 | actual = xu.sin(1) |
nothing calls this directly
no test coverage detected