diff options
Diffstat (limited to 'test/base.py')
-rw-r--r-- | test/base.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/base.py b/test/base.py new file mode 100644 index 0000000..397274e --- /dev/null +++ b/test/base.py @@ -0,0 +1,7 @@ +import os.path +import unittest + +class Test(unittest.TestCase): + + def setUp(self): + self.testdata_dir = os.path.join(os.path.dirname(__file__), 'testdata') |