From 42a1c81bbd4759dc50dfec089be35cb69c2ab088 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Mon, 28 Dec 2020 18:24:47 +0100 Subject: Added testsuites so all Python unit tests can be run with a single command. --- testsuite/pyunit/dom/__init__.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 testsuite/pyunit/dom/__init__.py (limited to 'testsuite/pyunit/dom') diff --git a/testsuite/pyunit/dom/__init__.py b/testsuite/pyunit/dom/__init__.py new file mode 100644 index 000000000..768810d72 --- /dev/null +++ b/testsuite/pyunit/dom/__init__.py @@ -0,0 +1,10 @@ +from unittest import TestSuite + +from testsuite.pyunit.dom import SimpleEntity + +def load_tests(loader, testCases, pattern): + suite = TestSuite() + + suite.addTests(loader.loadTestsFromModule(SimpleEntity)) + + return suite -- cgit v1.2.3