From 368474eaaa6cce9d219ff1963ff31e521eca62e9 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Sun, 27 Mar 2016 19:08:48 +0200 Subject: Move some testfiles around The long-term goal is to use nose2 for testing --- test/test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/test.py') 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(): the one used to spawn the `mat` process, and the one for Python import) in the main function. """ - import clitest - import libtest + import test_cli + import test_lib suite = unittest.TestSuite() - suite.addTests(clitest.get_tests()) - suite.addTests(libtest.get_tests()) + suite.addTests(test_cli.get_tests()) + suite.addTests(test_lib.get_tests()) return unittest.TextTestRunner(verbosity=VERBOSITY).run(suite).wasSuccessful() -- cgit v1.3