Sha256: ada563bd51fc146ad36ac380e4831e5598a13d069cf5b2e8a1fc36d2b8f9148e

Contents?: true

Size: 770 Bytes

Versions: 87

Compression:

Stored size: 770 Bytes

Contents

require 'spec_helper'

describe "produce_types/edit" do
  before(:each) do
    @produce_type = assign(:produce_type, stub_model(ProduceType,
      :name => "MyString",
      :display_name => "MyText",
      :note => "MyText",
      :position => 1
    ))
  end

  it "renders the edit produce_type form" do
    render

    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "form", :action => produce_types_path(@produce_type), :method => "post" do
      assert_select "input#produce_type_name", :name => "produce_type[name]"
      assert_select "textarea#produce_type_display_name", :name => "produce_type[display_name]"
      assert_select "textarea#produce_type_note", :name => "produce_type[note]"
    end
  end
end

Version data entries

87 entries across 87 versions & 1 rubygems

Version Path
enju_biblio-0.1.0.pre38 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre37 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre36 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre35 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre34 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre33 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre32 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre31 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre30 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre29 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre28 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre27 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre26 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre25 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre24 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre23 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre22 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre21 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre20 spec/views/produce_types/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre19 spec/views/produce_types/edit.html.erb_spec.rb