Sha256: 5499455cae99418fdd8c710ed8dcee598ebbc2cf7578629e4f5a25ba2e1f6ffa

Contents?: true

Size: 1.11 KB

Versions: 7

Compression:

Stored size: 1.11 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../../spec_helper')

<% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
describe "/<%= table_name %>/index.<%= default_file_extension %>" 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_value %><%= 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 "/<%= table_name %>/index.<%= default_file_extension %>"
<% for attribute in output_attributes -%>
    response.should have_tag("tr>td", <%= attribute.default_value %>.to_s, 2)
<% end -%>
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
dchelimsky-rspec-rails-1.1.99.1 generators/rspec_scaffold/templates/index_erb_spec.rb
dchelimsky-rspec-rails-1.1.99.2 generators/rspec_scaffold/templates/index_erb_spec.rb
dchelimsky-rspec-rails-1.1.99.3 generators/rspec_scaffold/templates/index_erb_spec.rb
dchelimsky-rspec-rails-1.1.99.4 generators/rspec_scaffold/templates/index_erb_spec.rb
dchelimsky-rspec-rails-1.1.99.5 generators/rspec_scaffold/templates/index_erb_spec.rb
dchelimsky-rspec-rails-1.1.99.6 generators/rspec_scaffold/templates/index_erb_spec.rb
dchelimsky-rspec-rails-1.1.99.7 generators/rspec_scaffold/templates/index_erb_spec.rb