测试元搜索/搜查
有没有办法在 Rails 中测试元搜索表单以查看返回的结果是否符合预期?
例如,我想执行 a
<%= form_for @search do |f| %>
<p>
<%= f.label :supplier_name_contains %>
<%= f.text_field :supplier_name_contains %>
</p>
<p class="button"><%= f.submit "Search" %></p>
<% end %>
并休息结果以查看它们实际上是否包含指定的文本。我该怎么做?
Is there a way to test a metasearch form in rails to see if the returned results are expected?
For example I want to do a
<%= form_for @search do |f| %>
<p>
<%= f.label :supplier_name_contains %>
<%= f.text_field :supplier_name_contains %>
</p>
<p class="button"><%= f.submit "Search" %></p>
<% end %>
and rest the results to see that they do in fact contain the specified text. How would I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不是自动化测试,但您可以使用
它显示相应的 SQL 查询。
It's not automated testing, but you could use
which displays the corresponding SQL query.