oss-specs/specs

View on GitHub
views/partials/feature-steps.hbs

Summary

Maintainability
Test Coverage
{{#if steps}}
  <section class="steps">
    {{#each steps}}
      {{> feature_step}}
      {{#if this.argument}} <!-- arguments as in data tables and doc strings -->
        {{> (lookup this.argument 'type') this.argument}} <!-- select the partial based on the argument type -->
      {{/if}}
    {{/each}}
  </section>
{{/if}}