Mercurial > genshi > mirror
view examples/turbogears/genshitest/tests/test_controllers.py @ 300:6ad1e2221d55 trunk
Reenable includes to work without an search path. Closes #63.
author | cmlenz |
---|---|
date | Mon, 16 Oct 2006 08:08:13 +0000 |
parents | 84168828b074 |
children |
line wrap: on
line source
from turbogears import testutil from genshitest.controllers import Root import cherrypy cherrypy.root = Root() def test_method(): "the index method should return a string called now" import types result = testutil.call(cherrypy.root.index) assert type(result["now"]) == types.StringType def test_indextitle(): "The mainpage should have the right title" testutil.createRequest("/") assert "<TITLE>Welcome to TurboGears</TITLE>" in cherrypy.response.body[0]