有以下代码:
def index
@car_types = car_brand.car_types
end
def car_brand
CarBrand.find(params[:car_brand_id])
rescue ActiveRecord::RecordNotFound
raise Errors::CarBrandNotFound.new
end
我想通过RSpec对其进行测试。我的代码是:
it 'raises CarBrandNotFound exception' do
get :index, car_brand_id: 0
expect(response).to raise_error(Errors::CarBrandNotFound)
end
ID等于0的CarBrand不存在,因此我的控制器代码引发了Errors :: CarBrandNotFound,但是我的测试代码告诉我什么都没有提出。我该如何解决?我怎么了
get :index, car_brand_id: 0
本身不会引发错误。