Sha256: 71fa5b305d80f84e7f39ed007ce3b30b53b8bab56b7c03c801935ce7e5ccb3ed

Contents?: true

Size: 1023 Bytes

Versions: 13

Compression:

Stored size: 1023 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.<%= default_file_extension %>" 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_value %><%= attribute_index == output_attributes.length - 1 ? '' : ','%>
<% end -%>
<% if !output_attributes.empty? -%>
    )
<% end -%>
  end

  it "should render attributes in <p>" do
    render "/<%= table_name %>/show.<%= default_file_extension %>"
<% for attribute in output_attributes -%>
    response.should have_text(/<%= Regexp.escape(attribute.default_value).gsub(/^"|"$/, '')%>/)
<% end -%>
  end
end

Version data entries

13 entries across 13 versions & 3 rubygems

Version Path
dchelimsky-rspec-rails-1.1.11.2 generators/rspec_scaffold/templates/show_erb_spec.rb
dchelimsky-rspec-rails-1.1.11.3 generators/rspec_scaffold/templates/show_erb_spec.rb
dchelimsky-rspec-rails-1.1.11.4 generators/rspec_scaffold/templates/show_erb_spec.rb
dchelimsky-rspec-rails-1.1.11.5 generators/rspec_scaffold/templates/show_erb_spec.rb
dchelimsky-rspec-rails-1.1.11.6 generators/rspec_scaffold/templates/show_erb_spec.rb
dchelimsky-rspec-rails-1.1.11.7 generators/rspec_scaffold/templates/show_erb_spec.rb
dchelimsky-rspec-rails-1.1.12 generators/rspec_scaffold/templates/show_erb_spec.rb
rspec-rails-1.1.12 generators/rspec_scaffold/templates/show_erb_spec.rb
spree-0.6.0 vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/show_erb_spec.rb
spree-0.7.0 vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/show_erb_spec.rb
spree-0.7.1 vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/show_erb_spec.rb
spree-0.8.0 vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/show_erb_spec.rb
spree-0.8.1 vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/show_erb_spec.rb