如何让 rake 使用“集成”?目录而不是“请求”;用于集成测试?
我想将我的集成测试保留在规范/集成中。然而,当我生成这些 rake 之一时,会创建一个 spec/requests 目录。
有没有办法将生成器指向另一个目录?
谢谢!
I'd like to keep my integration tests in spec/integration. However when I generate one of these rake creates a spec/requests directory.
Is there a way to point the generator at another directory?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以修改spec_helper。例如,在 rspec 配置中添加 capybara 就足够了。
然后你可以添加你自己的助手:
You may modify the spec_helper. Add capybara in your rspec configuration will suffice for instance.
Then you could add your own helpers:
我最终只使用了 requests 目录 - 意识到我对将目录称为“集成”的偏好并不值得花费精力去寻找这个目录。
将其标记为答案可能不太好..让我知道
I ended up just using the requests directory - realizing that my preference for calling the directory 'integration' wasn't worth the effort seeking this out.
It might be poor form to mark this as the answer.. let me know