(self)
| 212 | assert_array_almost_equal(values, [1.3, 2.5, 2.3]) |
| 213 | |
| 214 | def test_empty(self): |
| 215 | a, b = histogram([], bins=([0, 1])) |
| 216 | assert_array_equal(a, np.array([0])) |
| 217 | assert_array_equal(b, np.array([0, 1])) |
| 218 | |
| 219 | def test_error_binnum_type(self): |
| 220 | # Tests if right Error is raised if bins argument is float |
nothing calls this directly
no test coverage detected