断言无模板
我想知道我们是否有类似 assert_no_template
的东西作为 assert_template
的反面。
我想要测试的是实际渲染中没有使用具体模板。
I was wondering if do we have something like assert_no_template
as the opposite of the assert_template
.
What I'm trying to test is that a concrete template is not used in the actual render.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
更好的方法是使用 :count 参数来assert_template:
A better way would be to use the :count argument to assert_template:
我把它放在我的
test_helper.rb
中:I put this in my
test_helper.rb
:据我所知。应该渲染什么?您可以断言此内容的存在。
Not that I'm aware of. What is to be rendered instead? You could potentially assert presence of this content instead.