()
| 747 | |
| 748 | |
| 749 | def test_wrap_no_wrap(): |
| 750 | fig = plt.figure(figsize=(6, 4)) |
| 751 | text = fig.text(0, 0, 'non wrapped text', wrap=True) |
| 752 | fig.canvas.draw() |
| 753 | assert text._get_wrapped_text() == 'non wrapped text' |
| 754 | |
| 755 | |
| 756 | @check_figures_equal() |
nothing calls this directly
no test coverage detected
searching dependent graphs…