使用 rspec 和 cucumber 测试已经测试过的 Rails 应用程序
我已经在 Rails 上启动了一个项目,到目前为止我正在使用 Rails 的内置测试套件对其进行测试。现在有没有办法开始使用 rspec 和 cucumber 进行测试?如何做到这一点?
谢谢!
I've started a project on rails, and so far I'm testing it using rails' built in test suite. Is there a way to start testing it using rspec and cucumber at this point? How to do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个非常奇怪的问题。您一直在使用 Rails 的内置测试套件是什么意思?您使用什么版本的 Rails?
要开始测试,比如说模型,在 RSpec 中,您在 Rails 3 中调用以下命令:
在 Rails 2.x 中:
Cucumber 有点不同,但它以 (Rails 3) 开头:
Rails 2.x:
所有这些信息可以在各自的 Github 页面上轻松访问。您还有什么更具体的需要吗?
This is a really weird question. What do you mean you've been using Rails' built-in test suite? What version of Rails are you using?
To start with testing, say models, in RSpec, you invoke the following command in Rails 3:
In Rails 2.x:
Cucumber is a bit different, but it starts with (Rails 3):
Rails 2.x:
All of this information is easily accessible on their respective Github pages. Is there anything more specific you need?