Sha256: aa80130bd4e2c9572b0982ec98192becaa2c4ab762ffb6becdca7e4fa33e946c

Contents?: true

Size: 621 Bytes

Versions: 27

Compression:

Stored size: 621 Bytes

Contents

require 'rails_helper'

describe "produces/index" do
  before(:each) do
    assign(:produces, Kaminari.paginate_array([
      stub_model(Produce,
        manifestation_id: 1,
        agent_id: 2
      ),
      stub_model(Produce,
        manifestation_id: 1,
        agent_id: 2
      )
    ]).page(1))
  end

  it "renders a list of produces" 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: Manifestation.find(1).original_title, count: 2
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

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