Displaying 1 result from an estimated 1 matches for "fire_preventions_per_page".
2011 May 26
3
Kaminari rspec testing undefined method page.
...revention.stub(:search) { [mock_fire_prevention] }
get :index
assigns(:fire_preventions).should eq([mock_fire_prevention])
end
end
The index action is:
def index
@search = FirePrevention.search(params[:search])
@fire_preventions =
@search.page(params[:page]).per(Settings.fire_preventions_per_page)
end
I''m using meta_search.
The test error is:
Failure/Error: get :index
NoMethodError:
undefined method `page'' for [#<FirePrevention:0x976
@name="FirePrevention_1002">]:Array
--
You received this message because you are subscribed to the Google Gr...