aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/pyunit/dom/__init__.py
blob: 9c103eb6aefcaf1a9cddc8814433df29798dce5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from unittest import TestSuite

try:
	from testsuite.pyunit.dom import SimpleEntity
except ModuleNotFoundError:
	from pyunit.dom import SimpleEntity

def load_tests(loader, testCases, pattern):
	suite = TestSuite()

	suite.addTests(loader.loadTestsFromModule(SimpleEntity))

	return suite