Sha256: 64d496b98607dcb25c90cf1c7ae9b3acb8899ef5b084e10ccc4f97b462049bc4
Contents?: true
Size: 635 Bytes
Versions: 2
Compression:
Stored size: 635 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 do |scenario| %> <li class="r<%= n %>"> <%= linkify feature, scenario.value %> <small><%= scenario.location %></small> </li> <% n = n == 2 ? 1 : 2 %> <% end %> </ul> <% end %> <% end %>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cucumber-in-the-yard-1.7.0 | lib/templates/default/fulldoc/html/full_list_features.erb |
cucumber-in-the-yard-1.6.4 | lib/templates/default/fulldoc/html/full_list_features.erb |