Sha256: b267038a8a4ef146b3ac4b5b065682ea44bbf5a6411eb12dc14636801d4b8903

Contents?: true

Size: 530 Bytes

Versions: 6

Compression:

Stored size: 530 Bytes

Contents

<div class="outline">
	<div class="keyword"> <%= h @scenario.example_keyword %> </div>
	<table>
		<thead>
			<tr>
				<% @scenario.example_headers.each_with_index do |header,header_index| %>
				<th><%= h(header) %></th>
				<% end %>
			</tr>
		</thead>
		<% @scenario.example_data.each_with_index do |row,row_index| %>
		<tr class="<%= (row_index + 1) % 2 == 0 ? 'even' : 'odd' %>" >
			<% row.each_with_index do |column,column_index| %>
			<td><%= h(column.to_s.strip) %></td>
			<% end %>
		</tr>
		<% end %>
	</table>
</div>

Version data entries

6 entries across 6 versions & 1 rubygems

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