You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
706 B
Python
22 lines
706 B
Python
import matplotlib
|
|
import matplotlib.rcsetup
|
|
|
|
|
|
def test_use_doc_standard_backends():
|
|
"""
|
|
Test that the standard backends mentioned in the docstring of
|
|
matplotlib.use() are the same as in matplotlib.rcsetup.
|
|
"""
|
|
def parse(key):
|
|
backends = []
|
|
for line in matplotlib.use.__doc__.split(key)[1].split('\n'):
|
|
if not line.strip():
|
|
break
|
|
backends += [e.strip() for e in line.split(',') if e]
|
|
return backends
|
|
|
|
assert (set(parse('- interactive backends:\n')) ==
|
|
set(matplotlib.rcsetup.interactive_bk))
|
|
assert (set(parse('- non-interactive backends:\n')) ==
|
|
set(matplotlib.rcsetup.non_interactive_bk))
|