(stem_container, expected)
| 4980 | def test_stem_args(): |
| 4981 | """Test that stem() correctly identifies x and y values.""" |
| 4982 | def _assert_equal(stem_container, expected): |
| 4983 | x, y = map(list, stem_container.markerline.get_data()) |
| 4984 | assert x == expected[0] |
| 4985 | assert y == expected[1] |
| 4986 | |
| 4987 | fig, ax = plt.subplots() |
| 4988 |
no test coverage detected
searching dependent graphs…