~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/tests/test_controllers.py

  • Committer: Michael Hudson
  • Date: 2008-06-16 10:03:24 UTC
  • mfrom: (159.1.7 remove_caches)
  • Revision ID: michael.hudson@canonical.com-20080616100324-dyzbdp3xk2i1g34a
merge martin's remove caches branch, which removes the sql revision cache and
the textindexing code.
we still have the files changed cache.
(some further changes by me)

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]