()
| 727 | |
| 728 | @mpl.style.context('default') |
| 729 | def test_joinstyle(): |
| 730 | col = mcollections.PathCollection([]) |
| 731 | assert col.get_joinstyle() is None |
| 732 | col = mcollections.PathCollection([], joinstyle='round') |
| 733 | assert col.get_joinstyle() == 'round' |
| 734 | col.set_joinstyle('miter') |
| 735 | assert col.get_joinstyle() == 'miter' |
| 736 | |
| 737 | |
| 738 | @image_comparison(['cap_and_joinstyle.png'], style='mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…