MCPcopy Create free account
hub / github.com/numpy/numpy / test_object

Method test_object

numpy/core/tests/test_numeric.py:2979–2984  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2977 assert_array_almost_equal(z, self.zs)
2978
2979 def test_object(self):
2980 self._setup(Decimal)
2981 z = np.correlate(self.x, self.y, 'full')
2982 assert_array_almost_equal(z, self.z1)
2983 z = np.correlate(self.y, self.x, 'full')
2984 assert_array_almost_equal(z, self.z2)
2985
2986 def test_no_overwrite(self):
2987 d = np.ones(100)

Callers

nothing calls this directly

Calls 2

_setupMethod · 0.95

Tested by

no test coverage detected