mirror of https://github.com/pyodide/pyodide.git
10 lines
271 B
Python
10 lines
271 B
Python
|
def test_jinja2(selenium):
|
||
|
selenium.load_package("Jinja2")
|
||
|
selenium.run("""
|
||
|
import jinja2
|
||
|
|
||
|
template = jinja2.Template('Hello {{ name }}!')
|
||
|
""")
|
||
|
content = selenium.run("""template.render(name='Zach')""")
|
||
|
assert content == 'Hello Zach!'
|