RSpec have_selector 带有 request 和 request.body

发布于 2024-11-19 18:41:13 字数 329 浏览 3 评论 0原文

为什么

response.body.should have_selector "result"

通过而

response.should have_selector "result"

不通过?

我知道 ActionController::TestResponse 作为 response 返回,而 response.bodyString

have_selector 只适用于字符串吗?

Why would

response.body.should have_selector "result"

pass and

response.should have_selector "result"

not pass?

I understand ActionController::TestResponse is returned as the response and response.body is a String.

Does have_selector only work on strings?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浮云落日 2024-11-26 18:41:14

response 是整个响应对象,其中包含许多不同的属性。它不是字符串,而 have_selector 测试字符串。

response is the whole response object, which contains lots of different properties. It is not a string, and have_selector tests for a string.

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