gajim-plural/test/lib/__init__.py

40 lines
934 B
Python
Raw Normal View History

2008-06-12 05:56:30 +02:00
import sys
import os.path
gajim_root = os.path.join(os.path.abspath(os.path.dirname(__file__)), '../..')
2008-06-12 05:56:30 +02:00
# look for modules in the CWD, then gajim/test/lib, then gajim/src, then everywhere else
2008-08-09 01:53:44 +02:00
sys.path.insert(1, gajim_root + '/src')
sys.path.insert(1, gajim_root + '/test/lib')
2008-06-12 05:56:30 +02:00
# a temporary version of ~/.gajim for testing
configdir = gajim_root + '/test/tmp'
# define _ for i18n
import __builtin__
__builtin__._ = lambda x: x
import os
def setup_env():
# wipe config directory
if os.path.isdir(configdir):
import shutil
shutil.rmtree(configdir)
os.mkdir(configdir)
2008-06-12 05:56:30 +02:00
import common.configpaths
common.configpaths.gajimpaths.init(configdir)
common.configpaths.gajimpaths.init_profile()
2008-06-12 05:56:30 +02:00
# for some reason common.gajim needs to be imported before xmpppy?
from common import gajim
2008-06-12 05:56:30 +02:00
gajim.DATA_DIR = gajim_root + '/data'
2008-06-29 07:25:59 +02:00
import gtkgui_helpers
gtkgui_helpers.GLADE_DIR = gajim_root + '/data/glade'
2008-08-09 01:53:44 +02:00
# vim: se ts=3: