Sha256: 562188335d1f903931934a86d567ba5c2ca6e7fb49f577bcf84efd03ed6e5aef

Contents?: true

Size: 953 Bytes

Versions: 45

Compression:

Stored size: 953 Bytes

Contents

require 'rails_helper'

<% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
RSpec.describe "<%= ns_table_name %>/index", <%= type_metatag(:view) %> do
  before(:each) do
    assign(:<%= table_name %>, [
<% [1,2].each_with_index do |id, model_index| -%>
      <%= class_name %>.create!(<%= 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 <%= ns_table_name %>" do
    render
<% for attribute in output_attributes -%>
    assert_select "tr>td", :text => <%= value_for(attribute) %>.to_s, :count => 2
<% end -%>
  end
end

Version data entries

45 entries across 45 versions & 7 rubygems

Version Path
rspec-rails-3.9.1 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-4.0.0.beta3 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.8.3 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.9.0 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-4.0.0.beta2 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.8.2 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.8.1 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.8.0 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.7.2 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.7.1 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.7.0 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.6.1 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.6.0 lib/generators/rspec/scaffold/templates/index_spec.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/rspec-rails-3.5.2/lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.6.0.beta2 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.6.0.beta1 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.5.2 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.5.1 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.5.0 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-3.5.0.beta4 lib/generators/rspec/scaffold/templates/index_spec.rb