Sha256: 563b69675d9f3775e00d1876a97d95de7ed5991b192b20dd1dd5e69aaa2acaa1

Contents?: true

Size: 1.01 KB

Versions: 12

Compression:

Stored size: 1.01 KB

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
    cell_selector = Rails::VERSION::STRING >= '7' ? 'div>p' : 'tr>td'
<% for attribute in output_attributes -%>
    assert_select cell_selector, text: Regexp.new(<%= value_for(attribute) %>.to_s), count: 2
<% end -%>
  end
end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rspec-rails-6.1.3/lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-6.1.3 lib/generators/rspec/scaffold/templates/index_spec.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/rspec-rails-6.0.4/lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-6.1.2 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-6.1.1 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-6.1.0 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-6.0.4 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-6.0.3 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-6.0.2 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-6.0.1 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-6.0.0 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-6.0.0.rc1 lib/generators/rspec/scaffold/templates/index_spec.rb