Sha256: 191b8d8f78f50b1b11a435fa6954bbeaffdc14762c4c6dabcf63acbdff930842

Contents?: true

Size: 721 Bytes

Versions: 27

Compression:

Stored size: 721 Bytes

Contents

require 'rails_helper'

describe "realize_types/new" do
  before(:each) do
    assign(:realize_type, stub_model(RealizeType,
      name: "MyString",
      display_name: "MyText",
      note: "MyText",
      position: 1
    ).as_new_record)
  end

  it "renders new realize_type form" do
    render

    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "form", action: realize_types_path, method: "post" do
      assert_select "input#realize_type_name", name: "realize_type[name]"
      assert_select "textarea#realize_type_display_name", name: "realize_type[display_name]"
      assert_select "textarea#realize_type_note", name: "realize_type[note]"
    end
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
enju_biblio-0.3.4 spec/views/realize_types/new.html.erb_spec.rb
enju_biblio-0.3.3 spec/views/realize_types/new.html.erb_spec.rb
enju_biblio-0.3.2 spec/views/realize_types/new.html.erb_spec.rb
enju_biblio-0.3.1 spec/views/realize_types/new.html.erb_spec.rb
enju_biblio-0.3.0 spec/views/realize_types/new.html.erb_spec.rb
enju_biblio-0.3.0.rc.1 spec/views/realize_types/new.html.erb_spec.rb
enju_biblio-0.3.0.beta.2 spec/views/realize_types/new.html.erb_spec.rb