()
| 67 | |
| 68 | |
| 69 | def test_repr(): |
| 70 | fig, ax = plt.subplots() |
| 71 | ax.set_label('label') |
| 72 | ax.set_title('title') |
| 73 | ax.set_xlabel('x') |
| 74 | ax.set_ylabel('y') |
| 75 | assert repr(ax) == ( |
| 76 | "<Axes: " |
| 77 | "label='label', title={'center': 'title'}, xlabel='x', ylabel='y'>") |
| 78 | |
| 79 | |
| 80 | @check_figures_equal() |
nothing calls this directly
no test coverage detected
searching dependent graphs…