@@ -22,6 +22,8 @@ import os
|
|||||||
CONFIG = None
|
CONFIG = None
|
||||||
curdir = os.path.abspath(os.path.dirname(__file__))
|
curdir = os.path.abspath(os.path.dirname(__file__))
|
||||||
INIFILE = os.path.abspath(os.path.join(curdir, '..', 'etc', "config.ini"))
|
INIFILE = os.path.abspath(os.path.join(curdir, '..', 'etc', "config.ini"))
|
||||||
|
SAMPLE_INIFILE = os.path.abspath(os.path.join(curdir, '..',
|
||||||
|
'etc', "config.ini-sample"))
|
||||||
|
|
||||||
|
|
||||||
class ConfigurationError(Exception):
|
class ConfigurationError(Exception):
|
||||||
|
|||||||
@@ -22,6 +22,7 @@ import unittest2
|
|||||||
|
|
||||||
import mox
|
import mox
|
||||||
import stubout
|
import stubout
|
||||||
|
from swsync import utils
|
||||||
|
|
||||||
|
|
||||||
class TestCase(unittest2.TestCase):
|
class TestCase(unittest2.TestCase):
|
||||||
@@ -30,6 +31,7 @@ class TestCase(unittest2.TestCase):
|
|||||||
super(TestCase, self).setUp()
|
super(TestCase, self).setUp()
|
||||||
self.mox = mox.Mox()
|
self.mox = mox.Mox()
|
||||||
self.stubs = stubout.StubOutForTesting()
|
self.stubs = stubout.StubOutForTesting()
|
||||||
|
utils.CONFIG = utils.parse_ini(utils.SAMPLE_INIFILE)
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
self.mox.UnsetStubs()
|
self.mox.UnsetStubs()
|
||||||
|
|||||||
Reference in New Issue
Block a user