diff options
Diffstat (limited to 'Smarker/pytest_template.jinja2')
-rw-r--r-- | Smarker/pytest_template.jinja2 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Smarker/pytest_template.jinja2 b/Smarker/pytest_template.jinja2 new file mode 100644 index 0000000..73c9a40 --- /dev/null +++ b/Smarker/pytest_template.jinja2 @@ -0,0 +1,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 %}
\ No newline at end of file |