Sha256: b235c2240edc1ac6af8ed8fe7a9827c1bbc934735786b077f8b498bf7e0d7fe5

Contents?: true

Size: 718 Bytes

Versions: 27

Compression:

Stored size: 718 Bytes

Contents

require 'rails_helper'

describe "agent_types/edit" do
  before(:each) do
    @agent_type = assign(:agent_type, stub_model(AgentType,
      name: "MyString",
      display_name: "MyText",
      note: "MyText",
      position: 1
    ))
  end

  it "renders the edit agent_type form" do
    render

    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "form", action: agent_types_path(@agent_type), method: "post" do
      assert_select "input#agent_type_name", name: "agent_type[name]"
      assert_select "textarea#agent_type_display_name", name: "agent_type[display_name]"
      assert_select "textarea#agent_type_note", name: "agent_type[note]"
    end
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

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