summaryrefslogtreecommitdiffhomepage
path: root/tests/util.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-09-05 14:02:31 -0700
committerJeff Forcier <jeff@bitprophet.org>2014-09-05 14:02:31 -0700
commit146942c91b52eacfd6353c4f9e953b6d0ec772ac (patch)
treee4277b8bfebc7b4dd8941d71d6ebd0949ba05bfc /tests/util.py
parentad33bb186f1fa5750b363be66348b4fa6fbfdd4a (diff)
parentb8022866fac62d1757aa730d5991030f223088fd (diff)
Merge branch 'master' into 218-int
Diffstat (limited to 'tests/util.py')
-rw-r--r--tests/util.py7
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)
+