Sha256: e5cfcc88884b889e7178cf8cfb88b3f2813341d17e17ccfafb9bb5443f2b7acc

Contents?: true

Size: 634 Bytes

Versions: 9

Compression:

Stored size: 634 Bytes

Contents

require 'spec_helper'

describe "creates/index" do
  before(:each) do
    assign(:creates, [
      stub_model(Create,
        :work_id => 1,
        :patron_id => 1
      ),
      stub_model(Create,
        :work_id => 1,
        :patron_id => 2
      )
    ].paginate(: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

9 entries across 9 versions & 1 rubygems

Version Path
enju_biblio-0.0.9 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.0.8 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.0.7 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.0.6 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.0.5 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.0.4 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.0.3 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.0.2 spec/views/creates/index.html.erb_spec.rb
enju_biblio-0.0.1 spec/views/creates/index.html.erb_spec.rb