Sha256: 9c278b9a366feaaf1038a76c746533601d9e1d1fb58ac5a7246e57028c00100f

Contents?: true

Size: 571 Bytes

Versions: 51

Compression:

Stored size: 571 Bytes

Contents

require 'spec_helper'

describe "owns/edit" do
  before(:each) do
    @own = assign(:own, stub_model(Own,
      :item_id => 1,
      :patron_id => 1
    ))
    @ability = Object.new
    @ability.extend(CanCan::Ability)
    controller.stub(:current_ability) { @ability }
  end

  it "renders the edit own form" do
    render

    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "form", :action => owns_path(@own), :method => "post" do
      assert_select "input#own_item_id", :name => "own[item_id]"
    end
  end
end

Version data entries

51 entries across 51 versions & 1 rubygems

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