()
| 1137 | |
| 1138 | |
| 1139 | def test_ha_for_angle(): |
| 1140 | text_instance = Text() |
| 1141 | angles = np.arange(0, 360.1, 0.1) |
| 1142 | for angle in angles: |
| 1143 | alignment = text_instance._ha_for_angle(angle) |
| 1144 | assert alignment in ['center', 'left', 'right'] |
| 1145 | |
| 1146 | |
| 1147 | def test_va_for_angle(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…