Sha256: 0cb8c333f46fa9b01ded72f01e7694b89ceb937b2fc2e43ebd2678cf812d5bec

Contents?: true

Size: 983 Bytes

Versions: 7

Compression:

Stored size: 983 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 %> => <%= attribute.default.inspect %><%= 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 -%>
    response.should have_selector("tr>td", :content => <%= attribute.default.inspect %>.to_s, :count => 2)
<% end -%>
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rspec-rails-2.0.0.beta.8 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-2.0.0.beta.7 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-2.0.0.beta.6 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-2.0.0.beta.5 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-2.0.0.beta.4 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-2.0.0.beta.3 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-2.0.0.beta.2 lib/generators/rspec/scaffold/templates/index_spec.rb