()
| 43 | |
| 44 | |
| 45 | def test_linestylecycle_basic(): |
| 46 | fig, ax = plt.subplots() |
| 47 | ax.set_prop_cycle(cycler('ls', ['-', '--', ':'])) |
| 48 | for _ in range(4): |
| 49 | ax.plot(range(10), range(10)) |
| 50 | assert [l.get_linestyle() for l in ax.lines] == ['-', '--', ':', '-'] |
| 51 | |
| 52 | |
| 53 | def test_fillcycle_basic(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…