def __init__(self, *args, **kws): TestCase.__init__(self, *args, **kws) self.local_opts = { "cachedir": TEMPLATES_DIR, "file_client": "local", "file_roots": {"other": os.path.join(TEMPLATES_DIR, "files", "test")}, }
def __init__(self, *args, **kws): TestCase.__init__(self, *args, **kws) self.local_opts = { 'cachedir': TEMPLATES_DIR, 'file_client': 'local', 'file_roots': { 'other': os.path.join(TEMPLATES_DIR, 'files', 'test') } }
def __init__(self, *args, **kws): TestCase.__init__(self, *args, **kws) self.local_opts = { 'cachedir': TEMPLATES_DIR, 'file_client': 'local', 'file_roots': { 'other': [os.path.join(TEMPLATES_DIR, 'files', 'test')] } }
def __init__(self, *args, **kwargs): TestCase.__init__(self, *args, **kwargs) self.__processes = []