summaryrefslogtreecommitdiffstats
path: root/pytest_template.jinja2
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2022-02-16 15:45:37 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2022-02-16 15:45:37 +0000
commite5203f74000dc083d3e4024725a0e50656bf776b (patch)
tree4666d361615e5ed5503470c6e0a8f6e4e352dc8b /pytest_template.jinja2
parent376c8bef903657e020e482037b94a7b63514f640 (diff)
downloadSmarker-e5203f74000dc083d3e4024725a0e50656bf776b.tar.gz
Smarker-e5203f74000dc083d3e4024725a0e50656bf776b.zip
fixed bug when client classes weren't present
Diffstat (limited to 'pytest_template.jinja2')
-rw-r--r--pytest_template.jinja214
1 files changed, 7 insertions, 7 deletions
diff --git a/pytest_template.jinja2 b/pytest_template.jinja2
index 473b7b4..73c9a40 100644
--- a/pytest_template.jinja2
+++ b/pytest_template.jinja2
@@ -1,8 +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 #}
+{# 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