blob: 4f36458a7f9b8e72cb0d8457214f6a754baf7d07 [file] [log] [blame]
IRIS YANG31213572020-08-18 13:17:02 +00001import pytest
2
3from jinja2 import Template
4
5
6# Python < 3.7
7def test_generator_stop():
8 class X:
9 def __getattr__(self, name):
10 raise StopIteration()
11
12 t = Template("a{{ bad.bar() }}b")
13 with pytest.raises(RuntimeError):
14 t.render(bad=X())