Sha256: 683f58e86d1315f555d2826c147cd12d7c8a44cdbfde64c28f36371ae2b3a910

Contents?: true

Size: 1.17 KB

Versions: 4

Compression:

Stored size: 1.17 KB

Contents

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

<div class="scenario direct">
	<div class="title">
		<span class="pre"><%= scenario.keyword %></span>
		<span class="name">
			<a href="<%= url_for scenario.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 %>

Version data entries

4 entries across 4 versions & 1 rubygems

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