An empty project, with respect to functionality, but one configured with a test framework, linters, CI integration, etc. https://app.asana.com/0/836857747873847/839549782781239/f
11 lines
267 B
Python
11 lines
267 B
Python
"""Exercise doctests for order_utils module."""
|
|
|
|
from doctest import testmod
|
|
from zero_ex.order_utils import signature_utils
|
|
|
|
|
|
def test_doctest():
|
|
"""Invoke doctest on the module."""
|
|
(failure_count, _) = testmod(signature_utils)
|
|
assert failure_count == 0
|