()
| 166 | |
| 167 | |
| 168 | def test_multiaxes(): |
| 169 | fig, ax = plt.subplots(2) |
| 170 | ax[0].plot(range(4)) |
| 171 | ax[1].plot(range(10)) |
| 172 | |
| 173 | _assert_output_equal( |
| 174 | fake_renderer_output(fig, FakeRenderer), |
| 175 | """ |
| 176 | opening figure |
| 177 | opening axes |
| 178 | draw path with 4 vertices |
| 179 | closing axes |
| 180 | opening axes |
| 181 | draw path with 10 vertices |
| 182 | closing axes |
| 183 | closing figure |
| 184 | """, |
| 185 | ) |
| 186 | |
| 187 | |
| 188 | def test_image(): |
nothing calls this directly
no test coverage detected