Files
pystache/tests/test_pystache.py
T
2009-10-30 10:38:00 -07:00

54 lines
1.7 KiB
Python

import unittest
import pystache
class TestPystache(unittest.TestCase):
def test_basic(self):
ret = pystache.render("Hi {{thing}}!", { 'thing': 'world' })
self.assertEquals(ret, "Hi world!")
def test_kwargs(self):
ret = pystache.render("Hi {{thing}}!", thing='world')
self.assertEquals(ret, "Hi world!")
def test_less_basic(self):
template = "It's a nice day for {{beverage}}, right {{person}}?"
ret = pystache.render(template, { 'beverage': 'soda', 'person': 'Bob' })
self.assertEquals(ret, "It's a nice day for soda, right Bob?")
def test_even_less_basic(self):
template = "I think {{name}} wants a {{thing}}, right {{name}}?"
ret = pystache.render(template, { 'name': 'Jon', 'thing': 'racecar' })
self.assertEquals(ret, "I think Jon wants a racecar, right Jon?")
def test_comments(self):
template = "What {{! the }} what?"
ret = pystache.render(template)
self.assertEquals(ret, "What what?")
def test_false_sections_are_hidden(self):
template = "Ready {{#set}}set {{/set}}go!"
ret = pystache.render(template, { 'set': False })
self.assertEquals(ret, "Ready go!")
def test_true_sections_are_shown(self):
template = "Ready {{#set}}set{{/set}} go!"
ret = pystache.render(template, { 'set': True })
self.assertEquals(ret, "Ready set go!")
def test_sections(self):
template = """
<ul>
{{#users}}
<li>{{name}}</li>
{{/users}}
</ul>
"""
context = { 'users': [ {'name': 'Chris'}, {'name': 'Tom'}, {'name': 'PJ'} ] }
ret = pystache.render(template, context)
self.assertEquals(ret, """
<ul>
<li>Chris</li><li>Tom</li><li>PJ</li>
</ul>
""")