(self)
| 1340 | class _TestNormGeneral(_TestNormBase): |
| 1341 | |
| 1342 | def test_empty(self): |
| 1343 | assert_equal(norm([]), 0.0) |
| 1344 | assert_equal(norm(array([], dtype=self.dt)), 0.0) |
| 1345 | assert_equal(norm(atleast_2d(array([], dtype=self.dt))), 0.0) |
| 1346 | |
| 1347 | def test_vector_return_type(self): |
| 1348 | a = np.array([1, 0, 1]) |
nothing calls this directly
no test coverage detected