Sha256: 4b96b03553e285432626bd6a315ebde8b7d2894cc45bdf7beab8b6859305a51b
Contents?: true
Size: 662 Bytes
Versions: 33
Compression:
Stored size: 662 Bytes
Contents
require 'spec_helper' describe "realizes/index" do before(:each) do assign(:realizes, Kaminari::paginate_array([ stub_model(Realize, :expression_id => 1, :agent_id => 2 ), stub_model(Realize, :expression_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 realizes" 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