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.18 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.17 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.16 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.15 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.14 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.13 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.12 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.11 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.10 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.10.rc.3 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.10.rc.2 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.10.rc.1 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.9 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.4.0.rc.1 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.8 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.7 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.6 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.4.0.beta.2 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.4.0.beta.1 spec/views/agent_types/new.html.erb_spec.rb
enju_biblio-0.3.5 spec/views/agent_types/new.html.erb_spec.rb