Sha256: a9460fdb13a2c2f064ddc757ce573f174d40c1c4a5740e35088e6e062304ebdb

Contents?: true

Size: 575 Bytes

Versions: 27

Compression:

Stored size: 575 Bytes

Contents

require 'rails_helper'

describe "owns/index" do
  before(:each) do
    assign(:owns, Kaminari.paginate_array([
      stub_model(Own,
        item_id: 1,
        agent_id: 1
      ),
      stub_model(Own,
        item_id: 1,
        agent_id: 2
      )
    ]).page(1))
  end

  it "renders a list of owns" do
    allow(view).to receive(:policy).and_return double(create?: true, destroy?: true)
    render
    # Run the generator again with the --webrat flag if you want to use webrat matchers
    assert_select "tr>td", text: Item.find(1).item_identifier, count: 2
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

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