File: test_doctests.py

package info (click to toggle)
python-marshmallow-dataclass 8.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 332 kB
  • sloc: python: 2,351; makefile: 11; sh: 6
file content (9 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
import doctest

import marshmallow_dataclass


def load_tests(_loader, tests, _ignore):
    # Load all the doctests defined in the module
    tests.addTests(doctest.DocTestSuite(marshmallow_dataclass))
    return tests