Sha256: b57f661bc4eb76f6acdd23a5ea3ea27c87425447dfef972d2c3b4746023fd2c8
Contents?: true
Size: 926 Bytes
Versions: 25
Compression:
Stored size: 926 Bytes
Contents
require File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../../spec_helper' describe "/<%= table_name %>/index.<%= default_file_extension %>" do include <%= controller_class_name %>Helper before(:each) do <% [98,99].each do |id| -%> <%= file_name %>_<%= id %> = mock_model(<%= class_name %>) <% for attribute in attributes -%> <%= file_name %>_<%= id %>.should_receive(:<%= attribute.name %>).and_return(<%= attribute.default_value %>) <% end -%><% end %> assigns[:<%= table_name %>] = [<%= file_name %>_98, <%= file_name %>_99] end it "should render list of <%= table_name %>" do render "/<%= table_name %>/index.<%= default_file_extension %>" <% for attribute in attributes -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%> response.should have_tag("tr>td", <%= attribute.default_value %>, 2) <% end -%><% end -%> end end
Version data entries
25 entries across 25 versions & 4 rubygems