MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / test_joinstyle

Function test_joinstyle

lib/matplotlib/tests/test_collections.py:729–735  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

727
728@mpl.style.context('default')
729def 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')

Callers

nothing calls this directly

Calls 2

get_joinstyleMethod · 0.45
set_joinstyleMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…