# HG changeset patch # User Marcin Kuzminski # Date 1321836797 -7200 # Node ID 54fda6ce9e98407a3c02868f753c48adab2ae958 # Parent 07c8838ebfd3651afff02ad6cd244a5c92f85190 fixes timezone issues with tests diff -r 07c8838ebfd3 -r 54fda6ce9e98 rhodecode/tests/__init__.py --- a/rhodecode/tests/__init__.py Mon Nov 21 00:56:59 2011 +0200 +++ b/rhodecode/tests/__init__.py Mon Nov 21 02:53:17 2011 +0200 @@ -8,6 +8,7 @@ setup-app`) and provides the base testing objects. """ import os +import time from os.path import join as jn from unittest import TestCase @@ -20,11 +21,13 @@ from rhodecode.model import meta import logging +import pylons.test + +os.environ['TZ'] = 'UTC' +time.tzset() log = logging.getLogger(__name__) -import pylons.test - __all__ = ['environ', 'url', 'TestController', 'TESTS_TMP_PATH', 'HG_REPO', 'GIT_REPO', 'NEW_HG_REPO', 'NEW_GIT_REPO', 'HG_FORK', 'GIT_FORK', 'TEST_USER_ADMIN_LOGIN', 'TEST_USER_ADMIN_PASS' ] diff -r 07c8838ebfd3 -r 54fda6ce9e98 rhodecode/tests/functional/test_changelog.py --- a/rhodecode/tests/functional/test_changelog.py Mon Nov 21 00:56:59 2011 +0200 +++ b/rhodecode/tests/functional/test_changelog.py Mon Nov 21 02:53:17 2011 +0200 @@ -12,8 +12,9 @@ self.assertTrue("""""" in response.body) - self.assertTrue("""commit 154: 5e204e7583b9@2010-08-10 """ - """02:18:46""" in response.body) + self.assertTrue("""commit 154: 5e204e7583b9@2010-08-09 """ + """23:18:46""" in response.body) + self.assertTrue("""Small update at simplevcs app""" in response.body) @@ -23,7 +24,6 @@ """show more details">3""" in response.body) #pagination - response = self.app.get(url(controller='changelog', action='index', repo_name=HG_REPO), {'page':1}) response = self.app.get(url(controller='changelog', action='index', @@ -42,8 +42,8 @@ self.assertTrue("""""" in response.body) - self.assertTrue("""commit 64: 46ad32a4f974@2010-04-20""" - """ 01:33:21"""in response.body) + self.assertTrue("""commit 64: 46ad32a4f974@2010-04-19""" + """ 22:33:21"""in response.body) self.assertTrue("""""" """Merge with 2e6a2bf9356ca56df08807f4ad86d48""" """0da72a8f4""" % HG_REPO in response.body) - - - - #def test_index_git(self): - # self.log_user() - # response = self.app.get(url(controller='changelog', action='index', repo_name=GIT_REPO))