Test object arrays.
(self)
| 54 | self._test_not_equal(a, b) |
| 55 | |
| 56 | def test_objarray(self): |
| 57 | """Test object arrays.""" |
| 58 | a = np.array([1, 1], dtype=object) |
| 59 | self._test_equal(a, 1) |
| 60 | |
| 61 | def test_array_likes(self): |
| 62 | self._test_equal([1, 2, 3], (1, 2, 3)) |
nothing calls this directly
no test coverage detected