- <%= @scenario.keyword %>: <%= h @scenario.value %>
link
<% if @scenario.description.length > 0 %>
<%= htmlify_with_newlines @scenario.description %>
<% end %> <% if @scenario.comments.length > 0 %>
<%= htmlify_with_newlines @scenario.comments %>
<% end %>
<%= @scenario.location %>
<% unless @scenario.tags.empty? %>
<% @scenario.tags.each do |tag| %> <%= tag.value %> <% end %>
<% end%>
<% if @scenario.steps.empty? %> <%= erb(:no_steps_defined) %> <% else %> <%= @steps = @scenario.steps ; erb(:steps) %> <% end %>
<%= erb(:outline) if @scenario.outline? %>