9 lines
168 B
Python
9 lines
168 B
Python
from doctest import DocTestSuite
|
|
|
|
from library import music_tags
|
|
|
|
|
|
def load_tests(loader, tests, ignore):
|
|
tests.addTests(DocTestSuite(music_tags))
|
|
return tests
|