~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/tests/test_controllers.py

  • Committer: Martin Albisetti
  • Date: 2008-07-29 20:42:35 UTC
  • mto: This revision was merged to the branch mainline in revision 188.
  • Revision ID: argentina@gmail.com-20080729204235-nhhd02ll6vegonqp
Ignore build/

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]