diff rhodecode/tests/functional/test_admin.py @ 547:1e757ac98988

renamed project to rhodecode
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 06 Oct 2010 03:18:16 +0200
parents pylons_app/tests/functional/test_admin.py@6b934c9607e7
children dd06bdf974c8
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rhodecode/tests/functional/test_admin.py	Wed Oct 06 03:18:16 2010 +0200
@@ -0,0 +1,9 @@
+from rhodecode.tests import *
+
+class TestAdminController(TestController):
+
+    def test_index(self):
+        self.log_user()
+        response = self.app.get(url(controller='admin/admin', action='index'))
+        assert 'Admin dashboard - journal' in response.body,'No proper title in dashboard'
+        # Test response...