You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
274 B
15 lines
274 B
7 months ago
|
import pytest
|
||
|
|
||
|
from jinja2 import Template
|
||
|
|
||
|
|
||
|
# Python < 3.7
|
||
|
def test_generator_stop():
|
||
|
class X:
|
||
|
def __getattr__(self, name):
|
||
|
raise StopIteration()
|
||
|
|
||
|
t = Template("a{{ bad.bar() }}b")
|
||
|
with pytest.raises(RuntimeError):
|
||
|
t.render(bad=X())
|