Skip to content
Snippets Groups Projects
Commit 38065779 authored by Mike Bayer's avatar Mike Bayer
Browse files

added getattr/hasattr test

parent c5a12a8f
No related branches found
No related tags found
No related merge requests found
......@@ -140,6 +140,22 @@ class NamespaceTest(unittest.TestCase):
assert flatten_result(collection.get_template('main.html').render()) == "this is main. overridden def1 hi, there def2: there"
def test_getattr(self):
collection = lookup.TemplateLookup()
collection.put_string("main.html", """
<%namespace name="foo" file="ns.html"/>
<%
if hasattr(foo, 'lala'):
foo.lala()
if not hasattr(foo, 'hoho'):
context.write('foo has no hoho.')
%>
""")
collection.put_string("ns.html", """
<%def name="lala()">this is lala.</%def>
""")
assert flatten_result(collection.get_template("main.html").render()) == "this is lala.foo has no hoho."
def test_in_def(self):
collection = lookup.TemplateLookup()
collection.put_string("main.html", """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment