(self)
| 1247 | class _TestNormGeneral(_TestNormBase): |
| 1248 | |
| 1249 | def test_empty(self): |
| 1250 | assert_equal(norm([]), 0.0) |
| 1251 | assert_equal(norm(array([], dtype=self.dt)), 0.0) |
| 1252 | assert_equal(norm(atleast_2d(array([], dtype=self.dt))), 0.0) |
| 1253 | |
| 1254 | def test_vector_return_type(self): |
| 1255 | a = np.array([1, 0, 1]) |
nothing calls this directly
no test coverage detected