0
我正在爲列出的寶石編寫我的應用程序測試。我找不到如何設置水豚與骨幹工作(在所有AJAX)
例如測試:測試rspec&capybara的測試導軌+主幹應用程序
require 'spec_helper' describe "Main" do describe "GET /" do
it "displays articles" do
Article.create!(title:'title',body:'<p>body text</p>')
visit '/'
page.should have_content('body text')
end
end
end
輸出:
Failures:
1) Main GET/displays articles
Failure/Error: page.should have_content('body text')
expected there to be text "body text" in "Loading..."
# ./spec/features/main_spec.rb:8:in `block (3 levels) in <top (required)>'
「載入中...」是在我看來模板前阿賈克斯文字...
的一點是,我不希望在目前使用的茉莉花爲這個應用程序
這http://www.opinionatedprogrammer.com/2011/02/capybara-and- selenium-with-rspec-and-rails-3 /可以幫助你 – Sakeer 2015-07-08 08:47:53