()
| 1333 | |
| 1334 | |
| 1335 | def test_triplot_label(): |
| 1336 | x = [0, 2, 1] |
| 1337 | y = [0, 0, 1] |
| 1338 | data = [[0, 1, 2]] |
| 1339 | fig, ax = plt.subplots() |
| 1340 | lines, markers = ax.triplot(x, y, data, label='label') |
| 1341 | handles, labels = ax.get_legend_handles_labels() |
| 1342 | assert labels == ['label'] |
| 1343 | assert len(handles) == 1 |
| 1344 | assert handles[0] is lines |
| 1345 | |
| 1346 | |
| 1347 | def test_tricontour_path(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…