Sha256: a0ac22f878e7909fd26bb42b6882d2467fb4127b65b1d3867c1f3c2018fd3597

Contents?: true

Size: 944 Bytes

Versions: 22

Compression:

Stored size: 944 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

22 entries across 20 versions & 4 rubygems

Version Path
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rspec-rails-5.1.2/lib/generators/rspec/scaffold/templates/index_spec.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/rspec-rails-5.1.1/lib/generators/rspec/scaffold/templates/index_spec.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rspec-rails-5.1.2/lib/generators/rspec/scaffold/templates/index_spec.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/rspec-rails-5.1.1/lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-5.1.2 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-5.1.1 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-5.1.0 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-5.0.3 lib/generators/rspec/scaffold/templates/index_spec.rb
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/rspec-rails-5.0.2/lib/generators/rspec/scaffold/templates/index_spec.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/rspec-rails-5.0.2/lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-5.0.2 lib/generators/rspec/scaffold/templates/index_spec.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/rspec-rails-4.1.2/lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-5.0.1 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-4.1.2 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-5.0.0 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-4.1.1 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-4.1.0 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-4.0.2 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-4.0.1 lib/generators/rspec/scaffold/templates/index_spec.rb
rspec-rails-4.0.0 lib/generators/rspec/scaffold/templates/index_spec.rb