Sha256: 3852c6e8237487e6d083b79e43eff5a42f73b5e26ec15cd7ae36f056849f8c42

Contents?: true

Size: 849 Bytes

Versions: 3

Compression:

Stored size: 849 Bytes

Contents

require 'spec_helper'

<% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
describe "<%= table_name %>/show.html.<%= options[:template_engine] %>" do
  include <%= controller_class_name %>Helper
  before(:each) do
    assign(:<%= file_name %>, @<%= file_name %> = stub_model(<%= class_name %><%= output_attributes.empty? ? ')' : ',' %>
<% output_attributes.each_with_index do |attribute, attribute_index| -%>
      :<%= attribute.name %> => <%= attribute.default.inspect %><%= 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 -%>
    response.should contain(<%= attribute.default.inspect %>)
<% end -%>
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rspec-rails-2.0.0.beta.1 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.0.0.a10 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.0.0.a9 lib/generators/rspec/scaffold/templates/show_spec.rb