(self)
| 520 | self.darray.plot() # type: ignore[call-arg] |
| 521 | |
| 522 | def test_can_pass_in_axis(self) -> None: |
| 523 | self.pass_in_axis(self.darray.plot) |
| 524 | |
| 525 | def test__infer_interval_breaks(self) -> None: |
| 526 | assert_array_equal([-0.5, 0.5, 1.5], _infer_interval_breaks([0, 1])) |
nothing calls this directly
no test coverage detected