如何编写 Rails3 rake 任务来运行单个单元或功能测试
是否可以编写一个 rake 任务来运行单个指定的单元测试或单个指定的功能测试?
Is it possible to write a rake task that will run a single specified Unit test or a single specified Functional test?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过使用 -n 开关和测试方法名称来运行测试用例中的特定测试方法。
http://guides.rubyonrails.org/testing.html
这意味着你的 rake 任务看起来像
You can run a particular test method from the test case by using the -n switch with the test method name.
http://guides.rubyonrails.org/testing.html
It means your rake task will look like