Sha256: c4eb2c888786ff1485023120d47a654900d3390fa9243fcc49fae6dca6e3735c
Contents?: true
Size: 973 Bytes
Versions: 9
Compression:
Stored size: 973 Bytes
Contents
require 'spec_helper' <% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%> describe "<%= table_name %>/index.html.<%= options[:template_engine] %>" do before(:each) do assign(:<%= table_name %>, [ <% [1,2].each_with_index do |id, model_index| -%> stub_model(<%= class_name %><%= output_attributes.empty? ? (model_index == 1 ? ')' : '),') : ',' %> <% output_attributes.each_with_index do |attribute, attribute_index| -%> :<%= attribute.name %> => <%= value_for(attribute) %><%= attribute_index == output_attributes.length - 1 ? '' : ','%> <% end -%> <% if !output_attributes.empty? -%> <%= model_index == 1 ? ')' : '),' %> <% end -%> <% end -%> ]) end it "renders a list of <%= table_name %>" do render <% for attribute in output_attributes -%> rendered.should have_selector("tr>td", :content => <%= value_for(attribute) %>.to_s, :count => 2) <% end -%> end end
Version data entries
9 entries across 9 versions & 1 rubygems