Sha256: c5e535763858a2d5060bb37eaf00953a7ccde64b285701805294d938a73bc57b

Contents?: true

Size: 775 Bytes

Versions: 51

Compression:

Stored size: 775 Bytes

Contents

require 'spec_helper'

describe "produces/edit" do
  fixtures :produce_types

  before(:each) do
    @produce = assign(:produce, stub_model(Produce,
      :manifestation_id => 1,
      :patron_id => 1
    ))
    @produce_types = ProduceType.all
    @ability = Object.new
    @ability.extend(CanCan::Ability)
    controller.stub(:current_ability) { @ability }
  end

  it "renders the edit 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(@produce), :method => "post" do
      assert_select "input#produce_manifestation_id", :name => "produce[manifestation_id]"
      assert_select "input#produce_patron_id", :name => "produce[patron_id]"
    end
  end
end

Version data entries

51 entries across 51 versions & 1 rubygems

Version Path
enju_biblio-0.1.0.pre42 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre41 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre40 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre39 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre38 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre37 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre36 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre35 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre34 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre33 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre32 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre31 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre30 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre29 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre28 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre27 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre26 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre25 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre24 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre23 spec/views/produces/edit.html.erb_spec.rb