()
| 717 | |
| 718 | @mpl.style.context('default') |
| 719 | def test_capstyle(): |
| 720 | col = mcollections.PathCollection([]) |
| 721 | assert col.get_capstyle() is None |
| 722 | col = mcollections.PathCollection([], capstyle='round') |
| 723 | assert col.get_capstyle() == 'round' |
| 724 | col.set_capstyle('butt') |
| 725 | assert col.get_capstyle() == 'butt' |
| 726 | |
| 727 | |
| 728 | @mpl.style.context('default') |
nothing calls this directly
no test coverage detected
searching dependent graphs…