如何在 Rails 3 中运行重点功能测试

发布于 2024-11-28 11:55:13 字数 283 浏览 0 评论 0原文

在 users_controller_test.rb 中,我有:

def test_name 
  ...
end

def test_name_2 
  ...
end

etc...

是否可以仅从命令行运行第一个测试?比如:

 rake test:functionals TEST=test/functional/users_controller_test.rb (plus the test name?)

谢谢

In users_controller_test.rb I have:

def test_name 
  ...
end

def test_name_2 
  ...
end

etc...

Is it possible to run only the first test from the command line? Something like:

 rake test:functionals TEST=test/functional/users_controller_test.rb (plus the test name?)

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

流云如水 2024-12-05 11:55:13

你可以这样做:

ruby test/functions/users_controller_test.rb -n test_name

You can do it like this:

ruby test/functional/users_controller_test.rb -n test_name

一身骄傲 2024-12-05 11:55:13

您可能会从以下方面获得一些吸引力
ruby 测试/功能/users_controller_test.rb --something

You might get some traction from
ruby test/functional/users_controller_test.rb --something

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