()
| 37 | |
| 38 | |
| 39 | def test_list_builtin(): |
| 40 | backends = backend_registry.list_builtin() |
| 41 | assert not has_duplicates(backends) |
| 42 | # Compare using sets as order is not important |
| 43 | assert {*backends} == { |
| 44 | 'gtk3agg', 'gtk3cairo', 'gtk4agg', 'gtk4cairo', 'macosx', 'nbagg', 'notebook', |
| 45 | 'qtagg', 'qtcairo', 'qt5agg', 'qt5cairo', 'tkagg', |
| 46 | 'tkcairo', 'webagg', 'wx', 'wxagg', 'wxcairo', 'agg', 'cairo', 'pdf', 'pgf', |
| 47 | 'ps', 'svg', 'template', |
| 48 | } |
| 49 | |
| 50 | |
| 51 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…