我正在编写以下测试:
let!(:city_areas) { FactoryGirl.create_list(:city_area, 30) }
before {
@city_areas = mock_model(CityArea)
CityArea.should_receive(:where).and_return(city_areas)
}
it 'should assign the proper value to city areas variable' do
get :get_edit_and_update_vars
assigns(:city_areas).should eq(city_areas.order("name ASC"))
end
测试以下方法:
def get_edit_and_update_vars
@city_areas = CityArea.where("city_id = '#{@bar.city_id}'").order("name ASC").all
end
但是,它失败了,说没有用于 nil:NilClass 的方法 'city_id',这让我相信它仍在尝试使用实例变量 @bar。
我如何正确地删除这个 where 语句以防止这种情况发生?