Rspec integration tests without cucumber?

别说谁变了你拦得住时间么 提交于 2019-12-04 10:28:55

问题


Is there a way to do integration tests with Rspec without using Cucumber? I prefer using just plain old Webrat. Thanks.


回答1:


The latest version of RSpec-Rails (1.2.7) now has integration support. Upgrade then start adding specs to spec/integration or use the 'integration_spec' generator. Configure Webrat in spec/spec_helper.rb and you're set!




回答2:


We've recently started using RSpec with Capybara over Cucumber. Here is a "beginners" blog post I recently wrote on using RSpec integration tests without cucumber.

End-to-end testing with RSpec integration tests and Capybara

Let me know if you have any questions on getting your system set up.




回答3:


Check this link http://railscasts.com/episodes/257-request-specs-and-capybara at RailsCasts. This is a nice episode of doing integration tests with rspec.




回答4:


As far as I know Rspec is perfectly capable of testing views and controllers as part of integration tests. A quick look around the internet shows this article at Robby on Rails on view testing and some of the Rdocs within RSpec might help.

Hope this points you in the right direction - I'm afraid I use cucumber myself.



来源:https://stackoverflow.com/questions/973726/rspec-integration-tests-without-cucumber

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!