{% load static %} {% load extra_filters %} Printable copy for test cases {% block custom_stylesheet %}{% endblock %} {% if test_plan %}

TP-{{ test_plan.pk }}: {{ test_plan.name }}

Contents

    {% for test_case in test_plan.case.all %}
  1. TC-{{ test_case.pk }}: {{ test_case.summary }}, {{ test_case.case_status }}
  2. {% endfor %}

Test Plan Document

{{ test_plan.text|markdown2html }}
{% endif %}

Test Cases

{% for case_id, test_cases in test_cases.items %}
{% for test_case in test_cases %}

TC-{{ test_case.case_id }}: {{ test_case.case__summary }}

Set up

{{ test_case.setup|markdown2html }}

Actions

{{ test_case.action|markdown2html }}

Expected Results

{{ test_case.effect|markdown2html }}

Breakdown

{{ test_case.breakdown|markdown2html }}
{% endfor %}
{% endfor %}