mirror of
https://github.com/kennethreitz-archive/pystache.git
synced 2026-06-05 23:40:16 +00:00
9 lines
228 B
Python
9 lines
228 B
Python
import unittest
|
|
import pystache
|
|
|
|
class TestSimple(unittest.TestCase):
|
|
|
|
def test_simple_render(self):
|
|
tmpl = '{{derp}}'
|
|
|
|
self.assertEqual('herp', pystache.Template(tmpl, {'derp': 'herp'}).render()) |