Sha256: 3e40ea1de4eefa40ce7400bbf464d1cd53835f0cb68002f5f1febae702e658c3

Contents?: true

Size: 645 Bytes

Versions: 33

Compression:

Stored size: 645 Bytes

Contents

require 'spec_helper'

describe "creates/index" do
  before(:each) do
    assign(:creates, Kaminari::paginate_array([
      stub_model(Create,
        :work_id => 1,
        :agent_id => 1
      ),
      stub_model(Create,
        :work_id => 1,
        :agent_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

33 entries across 33 versions & 1 rubygems

Version Path
enju_biblio-0.1.3 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.2 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.1 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre71 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre70 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre69 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre68 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre67 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre66 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre65 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre64 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre63 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre62 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre61 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre60 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre59 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre58 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre57 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.1.0.pre56 spec/views/creates/index.html.erb_spec.rb