使用 rspec 和 cucumber 测试已经测试过的 Rails 应用程序

发布于 2024-10-21 22:14:11 字数 112 浏览 1 评论 0原文

我已经在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

虐人心 2024-10-28 22:14:11

这是一个非常奇怪的问题。您一直在使用 Rails 的内置测试套件是什么意思?您使用什么版本的 Rails?

要开始测试,比如说模型,在 RSpec 中,您在 Rails 3 中调用以下命令:

rails generate rspec:model <ModelName>

在 Rails 2.x 中:

script/generate rspec:model <ModelName>

Cucumber 有点不同,但它以 (Rails 3) 开头:

rails generate cucumber:install

Rails 2.x:

script/generate cucumber

所有这些信息可以在各自的 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:

rails generate rspec:model <ModelName>

In Rails 2.x:

script/generate rspec:model <ModelName>

Cucumber is a bit different, but it starts with (Rails 3):

rails generate cucumber:install

Rails 2.x:

script/generate cucumber

All of this information is easily accessible on their respective Github pages. Is there anything more specific you need?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文