Sha256: bd72fb4b042e2978f35e12fd8f0b3cd3f6c4eb7377ba91969682d91a78155bb6

Contents?: true

Size: 699 Bytes

Versions: 27

Compression:

Stored size: 699 Bytes

Contents

require 'rails_helper'

describe "agent_types/new" do
  before(:each) do
    assign(:agent_type, stub_model(AgentType,
      name: "MyString",
      display_name: "MyText",
      note: "MyText",
      position: 1
    ).as_new_record)
  end

  it "renders new 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, 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.4 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.3 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.2 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.1 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.0 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.0.rc.1 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.0.beta.2 spec/views/agent_types/new.html.erb_spec.rb