Sha256: bc5dfc0e1e15442779890fcf41d95065a08531afccf1c44c89c6a6bbe308ffea

Contents?: true

Size: 1.01 KB

Versions: 7

Compression:

Stored size: 1.01 KB

Contents

require 'spec_helper'

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

  before(:each) do
    assigns[:<%= file_name %>] = @<%= file_name %> = stub_model(<%= class_name %>,
      :new_record? => false<%= 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 the edit <%= file_name %> form" do
    render

    response.should have_tag("form[action=#{<%= file_name %>_path(@<%= file_name %>)}][method=post]") do
<% for attribute in output_attributes -%>
      with_tag('<%= attribute.input_type -%>#<%= file_name %>_<%= attribute.name %>[name=?]', "<%= file_name %>[<%= attribute.name %>]")
<% end -%>
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
rails3-generators-0.5.2 lib/replaced_by_lib_generators/rspec/scaffold/templates/edit_spec.rb
rails3-generators-0.5.1 lib/replaced_by_lib_generators/rspec/scaffold/templates/edit_spec.rb
rails3-generators-0.5.0 lib/replaced_by_lib_generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.0.0.a7 lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.0.0.a6 lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.0.0.a5 lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.0.0.a4 lib/generators/rspec/scaffold/templates/edit_spec.rb