(self)
| 934 | assert nbins == len(plt.gca().patches) |
| 935 | |
| 936 | def test_can_pass_in_axis(self) -> None: |
| 937 | self.pass_in_axis(self.darray.plot.hist) |
| 938 | |
| 939 | def test_primitive_returned(self) -> None: |
| 940 | n, bins, patches = self.darray.plot.hist() # type: ignore[call-arg] |
nothing calls this directly
no test coverage detected