Sha256: eb9e2bef42aadb1473909b7399d080f1c24942955c6b01856d976ded2fd6c66f

Contents?: true

Size: 1.43 KB

Versions: 14

Compression:

Stored size: 1.43 KB

Contents

require 'spec_helper'

<% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
describe "<%= ns_table_name %>/edit" do
  before(:each) do
    @<%= ns_file_name %> = assign(:<%= ns_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 -%>
<%= output_attributes.empty? ? "" : "    ))\n" -%>
  end

  it "renders the edit <%= ns_file_name %> form" do
    render

<% if webrat? -%>
    rendered.should have_selector("form", :action => <%= ns_file_name %>_path(@<%= ns_file_name %>), :method => "post") do |form|
<% for attribute in output_attributes -%>
      form.should have_selector("<%= attribute.input_type -%>#<%= ns_file_name %>_<%= attribute.name %>", :name => "<%= ns_file_name %>[<%= attribute.name %>]")
<% end -%>
    end
<% else -%>
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "form[action=?][method=?]", <%= ns_file_name %>_path(@<%= ns_file_name %>), "post" do
<% for attribute in output_attributes -%>
      assert_select "<%= attribute.input_type -%>#<%= ns_file_name %>_<%= attribute.name %>[name=?]", "<%= ns_file_name %>[<%= attribute.name %>]"
<% end -%>
    end
<% end -%>
  end
end

Version data entries

14 entries across 14 versions & 3 rubygems

Version Path
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/rspec-rails-2.13.0/lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.99.0 lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.99.0.rc1 lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.14.2 lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.99.0.beta2 lib/generators/rspec/scaffold/templates/edit_spec.rb
simple_token_authentication-1.0.0.pre.5 test/dummy/lib/templates/rspec/scaffold/edit_spec.rb
simple_token_authentication-1.0.0.beta.5 test/dummy/lib/templates/rspec/scaffold/edit_spec.rb
rspec-rails-2.14.1 lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.99.0.beta1 lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.14.0 lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.14.0.rc1 lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.13.2 lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.13.1 lib/generators/rspec/scaffold/templates/edit_spec.rb
rspec-rails-2.13.0 lib/generators/rspec/scaffold/templates/edit_spec.rb