Sha256: 557144db3d237a3d79722a93a78d88d29e567be42677a8fcb28262e4146885cd
Contents?: true
Size: 622 Bytes
Versions: 33
Compression:
Stored size: 622 Bytes
Contents
require 'spec_helper' describe "owns/index" do before(:each) do assign(:owns, Kaminari::paginate_array([ stub_model(Own, :item_id => 1, :agent_id => 1 ), stub_model(Own, :item_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 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
33 entries across 33 versions & 1 rubygems