Sha256: 468646c1f44311552f30d0e1ada3d4ee49200fbc94edde9ed70329d6487dc7f4

Contents?: true

Size: 628 Bytes

Versions: 27

Compression:

Stored size: 628 Bytes

Contents

require 'rails_helper'

describe "produces/new" do
  fixtures :produce_types

  before(:each) do
    assign(:produce, stub_model(Produce,
      manifestation_id: 1,
      agent_id: 1
    ).as_new_record)
    @produce_types = ProduceType.all
  end

  it "renders new produce form" do
    render

    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "form", action: produces_path, method: "post" do
      assert_select "input#produce_manifestation_id", name: "produce[manifestation_id]"
      assert_select "input#produce_agent_id", name: "produce[agent_id]"
    end
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

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