Sha256: b38acb0cfd80ec83f0a58ca83ad02d3a0466223243cb28126762c18309a1c0b0

Contents?: true

Size: 731 Bytes

Versions: 27

Compression:

Stored size: 731 Bytes

Contents

require 'rails_helper'

describe "create_types/edit" do
  before(:each) do
    @create_type = assign(:create_type, stub_model(CreateType,
      name: "MyString",
      display_name: "MyText",
      note: "MyText",
      position: 1
    ))
  end

  it "renders the edit create_type form" do
    render

    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "form", action: create_types_path(@create_type), method: "post" do
      assert_select "input#create_type_name", name: "create_type[name]"
      assert_select "textarea#create_type_display_name", name: "create_type[display_name]"
      assert_select "textarea#create_type_note", name: "create_type[note]"
    end
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
enju_biblio-0.3.18 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.17 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.16 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.15 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.14 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.13 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.12 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.11 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.10 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.10.rc.3 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.10.rc.2 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.10.rc.1 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.9 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.4.0.rc.1 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.8 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.7 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.6 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.4.0.beta.2 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.4.0.beta.1 spec/views/create_types/edit.html.erb_spec.rb
enju_biblio-0.3.5 spec/views/create_types/edit.html.erb_spec.rb