~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/tests/test_controllers.py

  • Committer: Robey Pointer
  • Date: 2006-12-11 21:51:02 UTC
  • Revision ID: robey@lag.net-20061211215102-2y9f1lvgkz1h82p0
possibly i'm going a little crazy here, but dramatically improve diff output by parsing it into a nested structure and letting the template format it

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from turbogears import testutil
 
2
from loggerhead.controllers import Root
 
3
import cherrypy
 
4
 
 
5
cherrypy.root = Root()
 
6
 
 
7
def test_method():
 
8
    "the index method should return a string called now"
 
9
    import types
 
10
    result = testutil.call(cherrypy.root.index)
 
11
    assert type(result["now"]) == types.StringType
 
12
 
 
13
def test_indextitle():
 
14
    "The mainpage should have the right title"
 
15
    testutil.createRequest("/")
 
16
    assert "<TITLE>Welcome to TurboGears</TITLE>" in cherrypy.response.body[0]