view pylons_app/tests/functional/test_admin.py @ 545:2e2ae0af3962

merged
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 05 Oct 2010 21:26:44 +0200
parents 6b934c9607e7
children
line wrap: on
line source

from pylons_app.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...