configurationengine/source/scripts/tests/testdata/report/template.txt
changeset 3 e7e0ae78773e
parent 0 2e8eeb919028
equal deleted inserted replaced
2:87cfa131b535 3:e7e0ae78773e
     1 Refs with implementations
     1 Refs with implementations
     2 =========================
     2 =========================
     3 {% for feat in rep_data.lines -%}
     3 {% for feat in merged_context.features.get_features(merged_context.impl_set.get_implemented_refs()) -%}
     4 {% if not loop.first -%}
     4 {% if not loop.first -%}
     5 -------------------------------------------------
     5 -------------------------------------------------
     6 {%- endif %}
     6 {%- endif %}
     7 Ref: {{ feat.ref }}
     7 Ref: {{ feat.fqr }}
     8 Impls:
     8 Impls:
     9 {% for impl in feat.impls -%}
     9 {% for impl in merged_context.impl_set.get_implementations_with_ref(feat.fqr) -%}
    10     File = "{{ impl.name }}", type = "{{ impl.type }}", gen_runs = {{impl.generation_runs}}
    10     File = "{{ impl.ref }}", type = "{{ impl.IMPL_TYPE_ID }}"
    11 {% endfor -%}
    11 {% endfor -%}
    12 {% endfor %}
    12 {% endfor %}
    13 
    13 
    14 
    14 
    15 Refs with no implementation
    15 Refs with no implementation
    16 ===========================
    16 ===========================
    17 {% for feat in rep_data.ref_noimpl -%}
    17 {% for fearef in merged_context.get_refs_with_no_output() -%}
    18     {{ feat.ref }}
    18     {{ fearef }}
    19 {% endfor %}
    19 {% endfor %}