(self)
| 627 | h.axis(-3) |
| 628 | |
| 629 | def test_overflow(self): |
| 630 | h = histogram(*[regular(1, 0, 1) for i in range(50)]) |
| 631 | with self.assertRaises(ValueError): |
| 632 | h(*range(50)) |
| 633 | |
| 634 | with self.assertRaises(ValueError): |
| 635 | h.at(*range(50)).value |
| 636 | |
| 637 | def test_out_of_range(self): |
| 638 | h = histogram(regular(3, 0, 1)) |