Sha256: 0d73b0c682a527fac04f4f65e4bc47df3dda8759221481d3ea0c633ee130440e

Contents?: true

Size: 764 Bytes

Versions: 7

Compression:

Stored size: 764 Bytes

Contents

<% n = 1 %>
<li class="r<%= n %>">
  <%= linkify YARD::CodeObjects::Cucumber::CUCUMBER_NAMESPACE, "All Features" %>
</li>
<% n = n == 2 ? 1 : 2 %>
<% @items.each do |feature| %>
<li class="r<%= n %>">
	<%= "<a class='toggle'></a>" unless feature.scenarios.empty? %>
	<%= linkify feature, feature.value %>
	<small><%= feature.location %></small>
</li>
<% n = n == 2 ? 1 : 2 %>
<% if feature.scenarios %>
<ul>
	<% feature.scenarios.each_with_index do |scenario,index| %>
	<li class="r<%= n %>">
	  <span class='object_link'>
   		<a href="<%= url_for(scenario.feature,"scenario#{index}") %>">
   		  <%= h scenario.value %>
   		</a>
   	</span>
   	<small><%= scenario.location %></small>
	</li>
        <% n = n == 2 ? 1 : 2 %>
	<% end %>
</ul>
<% end %>
<% end %>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cucumber-in-the-yard-1.7.7 lib/templates/default/fulldoc/html/full_list_features.erb
cucumber-in-the-yard-1.7.6 lib/templates/default/fulldoc/html/full_list_features.erb
cucumber-in-the-yard-1.7.5 lib/templates/default/fulldoc/html/full_list_features.erb
cucumber-in-the-yard-1.7.4 lib/templates/default/fulldoc/html/full_list_features.erb
cucumber-in-the-yard-1.7.3 lib/templates/default/fulldoc/html/full_list_features.erb
cucumber-in-the-yard-1.7.2 lib/templates/default/fulldoc/html/full_list_features.erb
cucumber-in-the-yard-1.7.1 lib/templates/default/fulldoc/html/full_list_features.erb