(self)
| 924 | assert "testpoints [testunits]" == plt.gca().get_xlabel() |
| 925 | |
| 926 | def test_title_is_histogram(self) -> None: |
| 927 | self.darray.coords["d"] = 10 |
| 928 | self.darray.plot.hist() # type: ignore[call-arg] |
| 929 | assert "d = 10" == plt.gca().get_title() |
| 930 | |
| 931 | def test_can_pass_in_kwargs(self) -> None: |
| 932 | nbins = 5 |