Sha256: 3e2edf1a53d7a7c44010cb48da62f05c1cbf89d58d7e351d5ed72e5afbc56074

Contents?: true

Size: 759 Bytes

Versions: 33

Compression:

Stored size: 759 Bytes

Contents

require 'spec_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
    @ability = Object.new
    @ability.extend(CanCan::Ability)
    controller.stub(:current_ability) { @ability }
  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

33 entries across 33 versions & 1 rubygems

Version Path
enju_biblio-0.1.0.pre55 spec/views/produces/new.html.erb_spec.rb
enju_biblio-0.1.0.pre54 spec/views/produces/new.html.erb_spec.rb
enju_biblio-0.1.0.pre53 spec/views/produces/new.html.erb_spec.rb
enju_biblio-0.1.0.pre52 spec/views/produces/new.html.erb_spec.rb
enju_biblio-0.1.0.pre51 spec/views/produces/new.html.erb_spec.rb
enju_biblio-0.1.0.pre50 spec/views/produces/new.html.erb_spec.rb
enju_biblio-0.1.0.pre49 spec/views/produces/new.html.erb_spec.rb
enju_biblio-0.1.0.pre48 spec/views/produces/new.html.erb_spec.rb
enju_biblio-0.1.0.pre47 spec/views/produces/new.html.erb_spec.rb
enju_biblio-0.1.0.pre46 spec/views/produces/new.html.erb_spec.rb
enju_biblio-0.1.0.pre45 spec/views/produces/new.html.erb_spec.rb
enju_biblio-0.1.0.pre44 spec/views/produces/new.html.erb_spec.rb
enju_biblio-0.1.0.pre43 spec/views/produces/new.html.erb_spec.rb