Sha256: 916700b4de8245cfb809d196630d89b35f57eea2e71d4091865b23db164931f0

Contents?: true

Size: 710 Bytes

Versions: 1

Compression:

Stored size: 710 Bytes

Contents

<% n = 1 %>
<li class="r<%= n %>">
  <%= all_features_link %>
</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

1 entries across 1 versions & 1 rubygems

Version Path
cucumber-in-the-yard-1.7.8 lib/templates/default/fulldoc/html/full_list_features.erb