()
| 891 | |
| 892 | |
| 893 | def test_default_antialiased(): |
| 894 | patch = Patch() |
| 895 | |
| 896 | patch.set_antialiased(not rcParams['patch.antialiased']) |
| 897 | assert patch.get_antialiased() == (not rcParams['patch.antialiased']) |
| 898 | # Check that None resets the state |
| 899 | patch.set_antialiased(None) |
| 900 | assert patch.get_antialiased() == rcParams['patch.antialiased'] |
| 901 | |
| 902 | |
| 903 | def test_default_linestyle(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…