Sha256: 2a732423a9798c6fa80b2cdc5c8b6eb5f34bc79dc691dab9d0d5046067b6b93c

Contents?: true

Size: 647 Bytes

Versions: 42

Compression:

Stored size: 647 Bytes

Contents

require 'spec_helper'

describe "creates/index" do
  before(:each) do
    assign(:creates, Kaminari::paginate_array([
      stub_model(Create,
        :work_id => 1,
        :patron_id => 1
      ),
      stub_model(Create,
        :work_id => 1,
        :patron_id => 2
      )
    ]).page(1))
    @ability = Object.new
    @ability.extend(CanCan::Ability)
    controller.stub(:current_ability) { @ability }
  end

  it "renders a list of creates" do
    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

42 entries across 42 versions & 1 rubygems

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