1
from loggerhead.zptsupport import load_template
3
RENDERED = u"<html>\n<head>\n<title>%s</title>\n</head>\n\
4
<body>\n<div>Hello, %s</div>\n</body>\n</html>"
1
from turbozpt import TurboZpt
2
from turbogears import controllers
3
from turbogears import testutil
7
RENDERED="<html>\n<head>\n<title>%s</title>\n</head>\n<body>\n<div>Hello, %s</div>\n</body>\n</html>\n"
7
9
def test_template_lookup():
8
template = load_template("loggerhead.tests.simple")
11
template = tc.load_template("turbozpt.tests.simple")
12
15
info = dict(title=TITLE, name=NAME)
13
s = template.expand(**info)
14
assert s.startswith(RENDERED % (TITLE, NAME))
17
assert str(t).startswith(RENDERED % (TITLE, NAME))
19
class TestRoot(controllers.Root):
20
def index(self, name, title="test"):
21
return dict(name=name, title=title)
22
index = turbogears.expose(html="zpt:turbozpt.tests.simple")(index)
24
def test_real_life_situation():
25
cherrypy.root = TestRoot()
28
testutil.createRequest("/?name=%s" % NAME)
29
print cherrypy.response.body
30
assert cherrypy.response.body[0].startswith(RENDERED % ("test", NAME))