2019-03-16 07:46:03 -07:00
|
|
|
import doctest
|
2019-03-13 03:13:32 -07:00
|
|
|
|
2019-03-13 20:38:22 -07:00
|
|
|
# ========== Constants ==========
|
2019-03-16 07:46:03 -07:00
|
|
|
TESTING_MODULE = "rbackup.hierarchy.hierarchy"
|
2019-03-13 20:38:22 -07:00
|
|
|
|
|
|
|
|
2019-03-16 07:46:03 -07:00
|
|
|
# ========== Functions ==========
|
|
|
|
def load_tests(loader, tests, ignore):
|
|
|
|
tests.addTests(doctest.DocTestSuite(TESTING_MODULE))
|
|
|
|
return tests
|