Sha256: 154aca0415800590d94a1f90f8e8c5ac165c4b04e225c14bd08f7fd62accfbbd
Contents?: true
Size: 985 Bytes
Versions: 3
Compression:
Stored size: 985 Bytes
Contents
require 'spec_helper' <% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].include?(attribute.type) } -%> describe "/<%= plural_name %>/index.html" do before do assigns[:<%= plural_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 %> => <%= attribute.default.inspect %><%= attribute_index == output_attributes.length - 1 ? '' : ','%> <% end -%> <% if !output_attributes.empty? -%> <%= model_index == 1 ? ')' : '),' %> <% end -%> <% end -%> ] end subject do render "<%= plural_name %>/index.html" response end it "should render list of <%= plural_name %>" do <% for attribute in output_attributes -%> should have_tag("tr>td", <%= attribute.default.inspect %>.to_s, 2) <% end -%> end end
Version data entries
3 entries across 3 versions & 1 rubygems