aboutsummaryrefslogtreecommitdiff
path: root/TestAll.py
diff options
context:
space:
mode:
authorGravatar rcoh <rcoh@mit.edu>2010-12-25 16:32:29 -0500
committerGravatar rcoh <rcoh@mit.edu>2010-12-25 16:32:29 -0500
commitb09a41f0891c041ad4fcecca59d03f52fe9ee9e8 (patch)
tree26cf710c89c3930c836de078277b9b761ed185b1 /TestAll.py
parent1b84f44faacfe83d4f3603b4df913ed01bf79d09 (diff)
some testcode that should be in the testing branch, but w/e. A method to composite to xml trees,
and a unit test to test it.
Diffstat (limited to 'TestAll.py')
-rw-r--r--TestAll.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/TestAll.py b/TestAll.py
new file mode 100644
index 0000000..9921c7e
--- /dev/null
+++ b/TestAll.py
@@ -0,0 +1,5 @@
+import unittest
+from unittest import TestLoader
+import tests.TestConfigLoaders
+testSuite = TestLoader().loadTestsFromModule(tests.TestConfigLoaders)
+unittest.TextTestRunner(verbosity=2).run(testSuite)