blob: 473b7b43a31081f07080db388b62c341fe36826b (
plain)
1
2
3
4
5
6
7
8
|
{# generating python with python :3 #}
import {{ module }}
{% for i, test_code in enumerate(filestests, 1) %}
def test_{{ i }}():
{{ test_code|indent(4, False) }} {# the code in the config file must be indented with 4 spaces only #}
{% endfor %}
|