()
| 2760 | |
| 2761 | |
| 2762 | def test_stairs_empty(): |
| 2763 | ax = plt.figure().add_subplot() |
| 2764 | ax.stairs([], [42]) |
| 2765 | assert ax.get_xlim() == (39, 45) |
| 2766 | assert ax.get_ylim() == (-0.06, 0.06) |
| 2767 | |
| 2768 | |
| 2769 | def test_stairs_invalid_nan(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…