如何在 Rails 3 中运行重点功能测试
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以这样做:
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
您可能会从以下方面获得一些吸引力
ruby 测试/功能/users_controller_test.rb --something
You might get some traction from
ruby test/functional/users_controller_test.rb --something