()
| 393 | |
| 394 | |
| 395 | def test_thetalim_args(): |
| 396 | ax = plt.subplot(projection='polar') |
| 397 | ax.set_thetalim(0, 1) |
| 398 | assert tuple(np.radians((ax.get_thetamin(), ax.get_thetamax()))) == (0, 1) |
| 399 | ax.set_thetalim((2, 3)) |
| 400 | assert tuple(np.radians((ax.get_thetamin(), ax.get_thetamax()))) == (2, 3) |
| 401 | |
| 402 | |
| 403 | def test_default_thetalocator(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…