Sha256: 5f834b708af21db23989f99b7b73729f32d71c1518a625fcf1c6eaa42ef7bc0d

Contents?: true

Size: 1005 Bytes

Versions: 7

Compression:

Stored size: 1005 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
  include <%= controller_class_name %>Helper

  before(:each) do
    assigns[:<%= 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_tag("tr>td", <%= attribute.default.inspect %>.to_s, 2)
<% end -%>
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
rails3-generators-0.5.2 lib/replaced_by_lib_generators/rspec/scaffold/templates/index_spec.rb
rails3-generators-0.5.1 lib/replaced_by_lib_generators/rspec/scaffold/templates/index_spec.rb
rails3-generators-0.5.0 lib/replaced_by_lib_generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-2.0.0.a7 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-2.0.0.a6 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-2.0.0.a5 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-2.0.0.a4 lib/generators/rspec/scaffold/templates/index_spec.rb