diff options
author | kali <kali@leap.se> | 2012-09-06 04:20:23 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-09-06 04:20:23 +0900 |
commit | bb5d092b6f57321a12f0d7575e221b0cc68f063d (patch) | |
tree | f8edf58ebdef82a0229739f62fb0d9fbcb633a2a /src/leap/testing/basetest.py | |
parent | 75f4128f5ed515c4df57275bf1479ccdf741c83f (diff) | |
parent | fc8a54a40645412e9c738723e54159bfda40cfde (diff) |
Merge branch 'feature/temp-socket-path' into develop
Closes #505: make management socket to listen on temporal files,
different for each run
Diffstat (limited to 'src/leap/testing/basetest.py')
-rw-r--r-- | src/leap/testing/basetest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/leap/testing/basetest.py b/src/leap/testing/basetest.py index 881f56c9..3186e1eb 100644 --- a/src/leap/testing/basetest.py +++ b/src/leap/testing/basetest.py @@ -34,6 +34,8 @@ class BaseLeapTest(unittest.TestCase): def tearDownClass(cls): os.environ["PATH"] = cls.old_path os.environ["HOME"] = cls.old_home + # safety check + assert cls.tempdir.startswith('/tmp/leap_tests-') shutil.rmtree(cls.tempdir) # you have to override these methods |