Sha256: 6075f4e028b0d2aa511aa307cc6df8dbb4770e518afc07cfc7891c7d123abc26
Contents?: true
Size: 611 Bytes
Versions: 9
Compression:
Stored size: 611 Bytes
Contents
require 'spec_helper' describe "owns/index" do before(:each) do assign(:owns, [ stub_model(Own, :item_id => 1, :patron_id => 1 ), stub_model(Own, :item_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 owns" do 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
9 entries across 9 versions & 1 rubygems