Sha256: 8ce7fb0191a8d296fb67bc7d833e818f7e4d4112d8451998052c4d390c5145b8
Contents?: true
Size: 869 Bytes
Versions: 10
Compression:
Stored size: 869 Bytes
Contents
<div class="scenario"> <div class="title"> <span class="pre">Scenario:</span> <span class="name"><%= @scenario.value %></span> </div> <% unless @scenario.tags.empty? %> <div class="tags"><%= @scenario.tags.collect { |tags| tags.value }.join(" ") %></div> <% end %> <% unless @scenario.description.empty? %> <div class="description"> <%= @scenario.description.join("\n<br/>") %> </div> <% end %> <div class="steps"> <% unless @scenario.steps.empty? %> <% @scenario.steps.each do |step| %> <!-- TODO: Style the first word differently --> <!-- TODO: Link the step to the step definition --> <!-- TODO: Steps without links should appear different --> <div class="step"><span class="predicate"><%= step.keyword %></span> <%= step.line %></div> <% end %> <% else %> <span>No Steps Defined</span> <% end %> </div> </div>
Version data entries
10 entries across 10 versions & 1 rubygems