()
| 7118 | |
| 7119 | |
| 7120 | def test_margin_getters(): |
| 7121 | fig = plt.figure() |
| 7122 | ax = fig.add_subplot() |
| 7123 | ax.margins(0.2, 0.3) |
| 7124 | assert ax.get_xmargin() == 0.2 |
| 7125 | assert ax.get_ymargin() == 0.3 |
| 7126 | |
| 7127 | |
| 7128 | def test_set_margin_updates_limits(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…