测试元搜索/搜查

发布于 2024-12-15 10:51:58 字数 385 浏览 3 评论 0原文

有没有办法在 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 技术交流群。

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

发布评论

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

评论(1

山人契 2024-12-22 10:51:58

它不是自动化测试,但您可以使用

<p>SQL: <%= @objects.to_sql %></p>

它显示相应的 SQL 查询。

It's not automated testing, but you could use

<p>SQL: <%= @objects.to_sql %></p>

which displays the corresponding SQL query.

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