Mercurial > genshi > mirror
view examples/turbogears/markuptest/tests/test_controllers.py @ 208:bc146e63c159 trunk
Cleanup the application of template processing steps (flatten, eval, match) so that they are only performed when necessary. Results in a small performance boost, and also fixes #35.
author | cmlenz |
---|---|
date | Tue, 29 Aug 2006 15:44:54 +0000 |
parents | 49364e784c47 |
children |
line wrap: on
line source
from turbogears import testutil from markuptest.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]