(self)
| 787 | self.darray.plot.line("ro") |
| 788 | |
| 789 | def test_can_pass_in_axis(self) -> None: |
| 790 | self.pass_in_axis(self.darray.plot.line) |
| 791 | |
| 792 | def test_nonnumeric_index(self) -> None: |
| 793 | a = DataArray([1, 2, 3], {"letter": ["a", "b", "c"]}, dims="letter") |
nothing calls this directly
no test coverage detected