Sha256: 1fe743cf6a1d1f37f60792e0ce74afcaedb015a0c2c28d2852ebdb2634e2881a

Contents?: true

Size: 1001 Bytes

Versions: 10

Compression:

Stored size: 1001 Bytes

Contents

require 'spec_helper'

<% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
describe "<%= ns_table_name %>/show.html.<%= options[:template_engine] %>" do
  before(:each) do
    @<%= ns_file_name %> = assign(:<%= ns_file_name %>, stub_model(<%= class_name %><%= output_attributes.empty? ? '))' : ',' %>
<% 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? -%>
    ))
<% end -%>
  end

  it "renders attributes in <p>" do
    render
<% for attribute in output_attributes -%>
<% if webrat? -%>
    rendered.should contain(<%= value_for(attribute) %>.to_s)
<% else -%>
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    rendered.should match(/<%= eval(value_for(attribute)) %>/)
<% end -%>
<% end -%>
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rspec-rails-2.8.0.rc2 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.8.0.rc1 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.7.0 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.7.0.rc1 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.6.1 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.6.1.beta1 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.6.0 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.6.0.rc6 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.6.0.rc4 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.6.0.rc2 lib/generators/rspec/scaffold/templates/show_spec.rb