(self)
| 1531 | assert_raises(ValueError, umt.euclidean_pdist, a) |
| 1532 | |
| 1533 | def test_cumsum(self): |
| 1534 | a = np.arange(10) |
| 1535 | result = umt.cumsum(a) |
| 1536 | assert_array_equal(result, a.cumsum()) |
| 1537 | |
| 1538 | def test_object_logical(self): |
| 1539 | a = np.array([3, None, True, False, "test", ""], dtype=object) |
nothing calls this directly
no test coverage detected