()
| 43 | |
| 44 | |
| 45 | def test_Axes(): |
| 46 | fig = plt.figure() |
| 47 | ax = Axes(fig, [0.15, 0.1, 0.65, 0.8]) |
| 48 | fig.add_axes(ax) |
| 49 | ax.plot([1, 2, 3], [0, 1, 2]) |
| 50 | ax.set_xscale('log') |
| 51 | fig.canvas.draw() |
| 52 | |
| 53 | |
| 54 | @image_comparison(['ParasiteAxesAuxTrans_meshplot.png'], |