Sha256: dec7aadd48c6dd85c18f3dc03e615664c2afe4a3e11daec8874f7cd1e46ab4ab

Contents?: true

Size: 772 Bytes

Versions: 33

Compression:

Stored size: 772 Bytes

Contents

require 'spec_helper'

describe "produces/edit" do
  fixtures :produce_types

  before(:each) do
    @produce = assign(:produce, stub_model(Produce,
      :manifestation_id => 1,
      :agent_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_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.3 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.2 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.1 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre71 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre70 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre69 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre68 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre67 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre66 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre65 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre64 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre63 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre62 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre61 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre60 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre59 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre58 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre57 spec/views/produces/edit.html.erb_spec.rb
enju_biblio-0.1.0.pre56 spec/views/produces/edit.html.erb_spec.rb