(self)
| 929 | assert "d = 10" == plt.gca().get_title() |
| 930 | |
| 931 | def test_can_pass_in_kwargs(self) -> None: |
| 932 | nbins = 5 |
| 933 | self.darray.plot.hist(bins=nbins) # type: ignore[call-arg] |
| 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) |