Sha256: 16a3a7e9413e166c595f122198fe082e87cdf80f9781221889ec33c2588d31b1

Contents?: true

Size: 972 Bytes

Versions: 8

Compression:

Stored size: 972 Bytes

Contents

require File.expand_path(File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../../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
    assigns[:<%= 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 have_text(/<%= Regexp.escape(attribute.default.inspect).gsub(/^"|"$/, '')%>/)
<% end -%>
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
rspec-rails-2.0.0.a3 lib/generators/rspec/scaffold/templates/show_spec.rb
rspec-rails-2.0.0.a2 lib/generators/rspec/scaffold/templates/show_spec.rb
rails3-generators-0.3.3 lib/generators/rspec/scaffold/templates/show_spec.rb
rails3-generators-0.3.2 lib/generators/rspec/scaffold/templates/show_spec.rb
rails3-generators-0.3.1 lib/generators/rspec/scaffold/templates/show_spec.rb
rails3-generators-0.3.0 lib/generators/rspec/scaffold/templates/show_spec.rb
rails3-generators-0.2.0 lib/generators/rspec/scaffold/templates/show_spec.rb
rails3-generators-0.1.0 lib/generators/rspec/scaffold/templates/show_spec.rb