Sha256: d578e634aeb88b754a8f85fab14f39ce28d565231b623a239796f741013ae2a4

Contents?: true

Size: 1 KB

Versions: 3

Compression:

Stored size: 1 KB

Contents

require 'spec_helper'

<% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
describe "<%= table_name %>/new.html.<%= options[:template_engine] %>" do
  include <%= controller_class_name %>Helper

  before(:each) do
    assign(:<%= file_name %>, stub_model(<%= class_name %>,
      :new_record? => true<%= output_attributes.empty? ? '' : ',' %>
<% output_attributes.each_with_index do |attribute, attribute_index| -%>
      :<%= attribute.name %> => <%= attribute.default.inspect %><%= attribute_index == output_attributes.length - 1 ? '' : ','%>
<% end -%>
    ))
  end

  it "renders new <%= file_name %> form" do
    render

    response.should have_selector("form", :action => <%= table_name %>_path, :method => "post") do |form|
<% for attribute in output_attributes -%>
      form.should have_selector("<%= attribute.input_type -%>#<%= file_name %>_<%= attribute.name %>", :name => "<%= file_name %>[<%= attribute.name %>]")
<% end -%>
    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/new_spec.rb
rspec-rails-2.0.0.a10 lib/generators/rspec/scaffold/templates/new_spec.rb
rspec-rails-2.0.0.a9 lib/generators/rspec/scaffold/templates/new_spec.rb