(self)
| 158 | _assert_equal_type_and_value(y + x, y) |
| 159 | |
| 160 | def test_object(self): |
| 161 | x = ArrayLike(0) |
| 162 | obj = object() |
| 163 | with assert_raises(TypeError): |
| 164 | x + obj |
| 165 | with assert_raises(TypeError): |
| 166 | obj + x |
| 167 | with assert_raises(TypeError): |
| 168 | x += obj |
| 169 | |
| 170 | def test_unary_methods(self): |
| 171 | array = np.array([-1, 0, 1, 2]) |
nothing calls this directly
no test coverage detected