Sha256: 4540c5870746ee4114466306d27983234765c343ec771bedfb695d2ae190562f

Contents?: true

Size: 804 Bytes

Versions: 4

Compression:

Stored size: 804 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
  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 -%>
   rendered.should contain(<%= attribute.default.inspect %>)
<% end -%>
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rspec-rails-2.0.0.beta.12 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.0.0.beta.11 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.0.0.beta.10 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.0.0.beta.9.1 lib/generators/rspec/scaffold/templates/show_spec.rb