如何为多站点应用程序上的集成测试长度设置子域?
在集成测试期间更改子域的最佳方法是什么?
jamis Buck 建议使用主机! 这里: http://weblog.jamisbuck.org /2006/3/9/integration-testing-in-rails-1-1#12
但是根据rails API,主机! 仅更改以下单个请求的主机。 我正在功能测试中寻找类似 @request.host 的内容,它允许我在整个测试中使用子域。
what's the best way to change a subdomains for the duration of an integration test?
jamis buck suggested using host! here:
http://weblog.jamisbuck.org/2006/3/9/integration-testing-in-rails-1-1#12
but according to the rails API, host! only changes the host for the following single request. i'm looking for something like @request.host in a functional test, which lets me use the subdomain for the entire test.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在集成测试中使用 host! 没有任何问题。 我通常在 setup 方法中调用一次,例如
I'm using host! in my integration tests without a problem. I generally call it once in the setup method, e.g.