Sha256: 9f04267564c8cc9a3ef8ce305166d45503fc73d5260e0c845d4955d51dc9fc3d

Contents?: true

Size: 1.17 KB

Versions: 33

Compression:

Stored size: 1.17 KB

Contents

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

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 %><%= attributes.empty? ? (model_index == 1 ? ')' : '),') : ',' %>
<% attributes.each_with_index do |attribute, attribute_index| -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%>
        :<%= attribute.name %> => <%= attribute.default_value %><%= attribute_index == attributes.length - 1 ? '' : ','%>
<% end -%><% end -%>
<% if !attributes.empty? -%>
      <%= model_index == 1 ? ')' : '),' %>
<% end -%>
<% end -%>
    ]
  end

  it "should render list of <%= table_name %>" do
    render "/<%= table_name %>/index.<%= default_file_extension %>"
<% for attribute in attributes -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%>
    response.should have_tag("tr>td", <%= attribute.default_value %>, 2)
<% end -%><% end -%>
  end
end

Version data entries

33 entries across 33 versions & 8 rubygems

Version Path
dchelimsky-rspec-rails-1.1.10 generators/rspec_scaffold/templates/index_erb_spec.rb
dchelimsky-rspec-rails-1.1.11 generators/rspec_scaffold/templates/index_erb_spec.rb
dchelimsky-rspec-rails-1.1.6 generators/rspec_scaffold/templates/index_erb_spec.rb
dchelimsky-rspec-rails-1.1.7 generators/rspec_scaffold/templates/index_erb_spec.rb
dchelimsky-rspec-rails-1.1.8 generators/rspec_scaffold/templates/index_erb_spec.rb
dchelimsky-rspec-rails-1.1.9 generators/rspec_scaffold/templates/index_erb_spec.rb
jcnetdev-rspec-rails-1.1.5 generators/rspec_scaffold/templates/index_erb_spec.rb
jnstq-acts_as_sms-0.1.0 test/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/index_erb_spec.rb
jnstq-acts_as_sms-0.1.1 test/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/index_erb_spec.rb
jnstq-acts_as_sms-0.1.3 test/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/index_erb_spec.rb
jnstq-acts_as_sms-0.1.4 test/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/index_erb_spec.rb
jstorimer-deep-test-2.0.0 sample_rails_project/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb
jstorimer-deep-test-1.4.0 sample_rails_project/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb
jstorimer-deep-test-1.3.0 sample_rails_project/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb
jstorimer-deep-test-1.2.0 sample_rails_project/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb
jstorimer-deep-test-1.1.0 sample_rails_project/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb
jstorimer-deep-test-1.0.0 sample_rails_project/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb
jstorimer-deep-test-0.2.0 sample_rails_project/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb
jstorimer-deep-test-0.1.0 sample_rails_project/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/templates/index_erb_spec.rb
pictrails-0.5.0 vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/index_erb_spec.rb