我一直在使用rspec和webrat,并决定添加黄瓜进行高水平测试。
用水豚安装黄瓜后,出于某种原因,rspec也转而使用它。
有没有办法告诉rspec继续使用webrat?
答案 0 :(得分:0)
确保Gemfile中同时包含webrat和capybara,并将以下内容添加到/spec/spec_helper.rb中:
require "webrat"
Webrat.configure do |config|
config.mode = :rails
end
我刚刚切换到水豚,但我的观点规格停止了,因为水豚没有'have_selector'。猜猜你有类似的问题,好吧,现在它(希望)已经解决了。