()
| 1145 | |
| 1146 | |
| 1147 | def test_va_for_angle(): |
| 1148 | text_instance = Text() |
| 1149 | angles = np.arange(0, 360.1, 0.1) |
| 1150 | for angle in angles: |
| 1151 | alignment = text_instance._va_for_angle(angle) |
| 1152 | assert alignment in ['center', 'top', 'baseline'] |
| 1153 | |
| 1154 | |
| 1155 | @image_comparison(['xtick_rotation_mode.png'], remove_text=False, style='mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…