Sha256: 3a06fbc2b0268710e8472423f97933d0d72347d80a52c972bb20e4817eb0ae49

Contents?: true

Size: 1.17 KB

Versions: 4

Compression:

Stored size: 1.17 KB

Contents

<% object.features.each do |feature| %>
<div class="feature direct">
	<div class="title">
		<span class="pre"><%= feature.keyword %></span>
		<span class="name">
			<a href="<%= url_for feature %>"><%= feature.value %></a>
		</span>
	</div>
	<div class="meta">
		<div class="file"><%= h(feature.file) %></div>
		<div class="tags">Tags: 
			<% feature.tags.each do |tag| %>
			<a href="<%= url_for tag %>"><%= tag.value %></a>
			<% end %>
		</div>		
	</div>
	<div class="description">
		<%= feature.description %>
	</div>
</div>
<% feature.scenarios.each do |scenario| %>
<div class="scenario indirect">
	<div class="title">
		<span class="pre"><%= scenario.keyword %></span>
		<span class="name">
			<a href="<%= url_for feature %>"><%= scenario.value %></a>
		</span>
	</div>
	<div class="meta">
		<div class="file">
			<%= scenario.location %>
		</div>
		<% unless scenario.tags.empty? %>
		<div class="tags">
			Tags: <% scenario.tags.each do |tag| %>
			<a href="<%= url_for tag %>"><%= tag.value %></a>
			<% end %>
		</div>
		<% end%>
	</div>
	<% unless scenario.description.empty? %>
	<div class="description">
		<%= h scenario.description %>
	</div>
	<% end %>	
</div>
<% end %>
<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
cucumber-in-the-yard-1.5.4 lib/templates/default/tag/html/feature.erb
cucumber-in-the-yard-1.5.3 lib/templates/default/tag/html/feature.erb
cucumber-in-the-yard-1.5.2 lib/templates/default/tag/html/feature.erb
cucumber-in-the-yard-1.5.1 lib/templates/default/tag/html/feature.erb