summaryrefslogtreecommitdiff
path: root/test/test.py
diff options
context:
space:
mode:
authorjvoisin2016-03-27 19:08:48 +0200
committerjvoisin2016-03-27 19:08:48 +0200
commit368474eaaa6cce9d219ff1963ff31e521eca62e9 (patch)
treeaffd71b4f51861178545c44892c061c0e4e4b56f /test/test.py
parentcae9853318964813b60db05e71d431eb49366d34 (diff)
Move some testfiles around
The long-term goal is to use nose2 for testing
Diffstat (limited to '')
-rw-r--r--test/test.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test.py b/test/test.py
index 58e7ec7..818909e 100644
--- a/test/test.py
+++ b/test/test.py
@@ -85,11 +85,11 @@ def run_all_tests():
85 the one used to spawn the `mat` process, and the one for Python import) 85 the one used to spawn the `mat` process, and the one for Python import)
86 in the main function. 86 in the main function.
87 """ 87 """
88 import clitest 88 import test_cli
89 import libtest 89 import test_lib
90 suite = unittest.TestSuite() 90 suite = unittest.TestSuite()
91 suite.addTests(clitest.get_tests()) 91 suite.addTests(test_cli.get_tests())
92 suite.addTests(libtest.get_tests()) 92 suite.addTests(test_lib.get_tests())
93 93
94 return unittest.TextTestRunner(verbosity=VERBOSITY).run(suite).wasSuccessful() 94 return unittest.TextTestRunner(verbosity=VERBOSITY).run(suite).wasSuccessful()
95 95