Sha256: 30d097a6b175851058204278597a312267f5069c42f1c5d2944b4c12bd06929a

Contents?: true

Size: 852 Bytes

Versions: 5

Compression:

Stored size: 852 Bytes

Contents

<div class="transformer">
  <div class="steps">
  <% if @undefined_steps && !@undefined_steps.empty? %>
    <% unique_steps(@undefined_steps).each_with_index do |uniq_step,step_index| %>
    <div class="step <%= (step_index + 1) % 2 == 0 ? 'even' : 'odd' %>">
      <div>
        <span class="predicate"><%= uniq_step.last.first.keyword %></span>
        <span class="undefined">
          <%= h uniq_step.last.first.value %>
        </span>
      </div>
      <% uniq_step.last.each do |step| %>
        <a class="definition" style="clear: right;" href="<%= url_for step.scenario.feature %>">
          <%= h step.location %>
        </a>
      <% end%>
      <div style="clear: both;"></div>
    </div>
    <% end %>
    <% else %>
    <div class="steps">
      <div class="undefined">No undefined steps</div>
    </div>
    <% end%>
  </div>
</div>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
cucumber-in-the-yard-1.7.7 lib/templates/default/steptransformers/html/undefined_steps.erb
cucumber-in-the-yard-1.7.6 lib/templates/default/steptransformers/html/undefined_steps.erb
cucumber-in-the-yard-1.7.5 lib/templates/default/steptransformers/html/undefined_steps.erb
cucumber-in-the-yard-1.7.4 lib/templates/default/steptransformers/html/undefined_steps.erb
cucumber-in-the-yard-1.7.3 lib/templates/default/steptransformers/html/undefined_steps.erb