()
| 901 | |
| 902 | |
| 903 | def test_default_linestyle(): |
| 904 | patch = Patch() |
| 905 | patch.set_linestyle('--') |
| 906 | patch.set_linestyle(None) |
| 907 | assert patch.get_linestyle() == 'solid' |
| 908 | |
| 909 | |
| 910 | @mpl.style.context('mpl20') |
nothing calls this directly
no test coverage detected
searching dependent graphs…