(self, temp_file, frame_or_series, idx)
| 1685 | ], |
| 1686 | ) |
| 1687 | def test_pickle_fig(self, temp_file, frame_or_series, idx): |
| 1688 | # GH18439, GH#24088, statsmodels#4772 |
| 1689 | df = frame_or_series(range(5), index=idx) |
| 1690 | fig, ax = plt.subplots(1, 1) |
| 1691 | df.plot(ax=ax) |
| 1692 | with temp_file.open(mode="wb") as path: |
| 1693 | pickle.dump(fig, path) |
| 1694 | |
| 1695 | |
| 1696 | def _check_plot_works(f, freq=None, series=None, *args, **kwargs): |
nothing calls this directly
no test coverage detected