()
| 127 | |
| 128 | |
| 129 | def test_path(): |
| 130 | fig, ax = plt.subplots() |
| 131 | ax.add_patch(plt.Circle((0, 0), 1)) |
| 132 | ax.add_patch(plt.Rectangle((0, 0), 1, 2)) |
| 133 | |
| 134 | _assert_output_equal( |
| 135 | fake_renderer_output(fig, FakeRenderer), |
| 136 | """ |
| 137 | opening figure |
| 138 | opening axes |
| 139 | draw path with 25 vertices |
| 140 | draw path with 4 vertices |
| 141 | closing axes |
| 142 | closing figure |
| 143 | """, |
| 144 | ) |
| 145 | |
| 146 | |
| 147 | def test_Figure(): |
nothing calls this directly
no test coverage detected