你好我試圖存根在控制器中的around_filter方法,該方法返回true始終,在rspec的 before(:each) do
controller.stub(:catch_exceptions).and_return(true)
end
after(:each) do
controller.stub(:catch_exceptions).and_return(true
我正在開發一個rails應用程序,我遵循Michael Hartl着名的教程。我正在使用更新版本的RSpec和水豚,因此遇到了問題。由於水豚2,您需要place tests using Capybara in spec/features。 RSpec Capybara does no longer請求規格。 Hartl給出的解決方案因此不再有效(他將所有測試都放在規範/要求中)。 我需要在請求測試