diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-09-06 16:07:24 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-09-06 16:07:24 -0700 |
commit | 08239ff4b29c0b53c5443f21ae482e51340223f6 (patch) | |
tree | 73f0b7e4d25a80c965186d03abde9c006b1feec0 /tests/util.py | |
parent | 5335d9dc0a6266217d288e7aaf2091739980d841 (diff) | |
parent | 6a6ac4d78421667b810f5e3a017fb669853133f9 (diff) |
Merge branch 'master' into 234-int
Diffstat (limited to 'tests/util.py')
-rw-r--r-- | tests/util.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/util.py b/tests/util.py index 2e0be087..66d2696c 100644 --- a/tests/util.py +++ b/tests/util.py @@ -1,5 +1,8 @@ +import os import unittest +root_path = os.path.dirname(os.path.realpath(__file__)) + class ParamikoTest(unittest.TestCase): # for Python 2.3 and below @@ -8,3 +11,7 @@ class ParamikoTest(unittest.TestCase): if not hasattr(unittest.TestCase, 'assertFalse'): assertFalse = unittest.TestCase.failIf + +def test_path(filename): + return os.path.join(root_path, filename) + |