[conduit: 109/138] Move soup internal code away from tests to utils/



commit 8795046faab33d9785f33095356d797941d3b1cf
Author: John Carr <john carr unrouted co uk>
Date:   Wed May 6 02:58:55 2009 -0700

    Move soup internal code away from tests to utils/
---
 test/soup/soup                         |    5 ++---
 test/soup/{result.py => utils/test.py} |    0
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/test/soup/soup b/test/soup/soup
index a42f4cc..ce78a92 100755
--- a/test/soup/soup
+++ b/test/soup/soup
@@ -10,6 +10,7 @@ if not os.path.exists('tmp'):
     os.mkdir('tmp')
 
 import soup
+from soup.utils import test
 
 known_failures = [
     'Evo',          # Will trash your main evo :/
@@ -22,10 +23,8 @@ from test_datatypes import *
 from test_dataprovider import *
 from test_synchronization import *
 
-import result
-
 def run_tests(tests, opts):
-    runner = result.TestRunner(opts)
+    runner = test.TestRunner(opts)
 
     if opts.verbose:
         logging.basicConfig(level=logging.DEBUG)
diff --git a/test/soup/result.py b/test/soup/utils/test.py
similarity index 100%
rename from test/soup/result.py
rename to test/soup/utils/test.py



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]