comparison rhodecode/tests/__init__.py @ 679:d85b0948e539 rhodecode-0.0.1.0.2

fixed hooks broken symlink issue fixed python2.5 crash. fixed #58 missing graph.js bug Fixed tests to remove the forked repository when building enviroment version bump
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 11 Nov 2010 15:03:40 +0100
parents 45e1fdc0082c
children 3d0661b8aaa4
comparison
equal deleted inserted replaced
672:6f796f56a64c 679:d85b0948e539
32 32
33 environ = {} 33 environ = {}
34 TEST_DIR = '/tmp' 34 TEST_DIR = '/tmp'
35 REPO_PATH = os.path.join(TEST_DIR, 'vcs_test') 35 REPO_PATH = os.path.join(TEST_DIR, 'vcs_test')
36 NEW_REPO_PATH = os.path.join(TEST_DIR, 'vcs_test_new') 36 NEW_REPO_PATH = os.path.join(TEST_DIR, 'vcs_test_new')
37 FORK_REPO_PATH = os.path.join(TEST_DIR, 'vcs_test_fork')
37 38
38 class TestController(TestCase): 39 class TestController(TestCase):
39 40
40 def __init__(self, *args, **kwargs): 41 def __init__(self, *args, **kwargs):
41 wsgiapp = pylons.test.pylonsapp 42 wsgiapp = pylons.test.pylonsapp