ansible-later/testenv/lib/python2.7/site-packages/toolz/tests/test_curried_doctests.py

12 lines
274 B
Python
Raw Normal View History

2019-04-23 11:04:27 +00:00
import doctest
import toolz
def test_doctests():
toolz.__test__ = {}
for name, func in vars(toolz).items():
if isinstance(func, toolz.curry):
toolz.__test__[name] = func.func
assert doctest.testmod(toolz).failed == 0
del toolz.__test__