()
| 112 | |
| 113 | |
| 114 | def test_date_not_empty(): |
| 115 | fig = plt.figure() |
| 116 | ax = fig.add_subplot() |
| 117 | |
| 118 | ax.plot([50, 70], [1, 2]) |
| 119 | ax.xaxis.axis_date() |
| 120 | np.testing.assert_allclose(ax.get_xlim(), [50, 70]) |
| 121 | |
| 122 | |
| 123 | def test_axhline(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…