如何为多站点应用程序上的集成测试长度设置子域?

发布于 2024-07-14 19:51:18 字数 336 浏览 4 评论 0原文

在集成测试期间更改子域的最佳方法是什么?

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 技术交流群。

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

发布评论

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

评论(1

蓬勃野心 2024-07-21 19:51:18

我在集成测试中使用 host! 没有任何问题。 我通常在 setup 方法中调用一次,例如

def setup
    host! "my.host"    
end

I'm using host! in my integration tests without a problem. I generally call it once in the setup method, e.g.

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