You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2012/10/02 23:30:28 UTC

[24/34] git commit: [#4938] ticket:177 added timezone test for ForgeGit

[#4938] ticket:177 added timezone test for ForgeGit


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/3d42e7fe
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/3d42e7fe
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/3d42e7fe

Branch: refs/heads/db/4968
Commit: 3d42e7fe80a0e1c191d5f34dcdb02235117d30ff
Parents: b1cb2f5
Author: Yuriy Arhipov <yu...@yandex.ru>
Authored: Thu Sep 27 15:51:55 2012 +0400
Committer: Dave Brondsema <db...@geek.net>
Committed: Fri Sep 28 14:51:45 2012 +0000

----------------------------------------------------------------------
 .../forgegit/tests/functional/test_controllers.py  |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/3d42e7fe/ForgeGit/forgegit/tests/functional/test_controllers.py
----------------------------------------------------------------------
diff --git a/ForgeGit/forgegit/tests/functional/test_controllers.py b/ForgeGit/forgegit/tests/functional/test_controllers.py
index 57a1b3a..f0ec19e 100644
--- a/ForgeGit/forgegit/tests/functional/test_controllers.py
+++ b/ForgeGit/forgegit/tests/functional/test_controllers.py
@@ -225,6 +225,11 @@ class TestRootController(_TestCase):
         link = header.find('a', {'class': 'artifact_subscribe'})
         assert link is not None, header
 
+    def test_timezone(self):
+        ci = self._get_ci()
+        resp = self.app.get(ci + 'tree/')
+        assert "Thu Oct 07, 2010 06:44 PM UTC" in resp, resp.showbrowser()
+
 
 class TestRestController(_TestCase):