我有一個頁面有多個按鈕。例如:水豚曖昧的匹配 - 如何選擇第一項
<% Zombie.each.do |zombie| %>
<%= zombie.name %>
<%= form_for(zombie) do |f| %>
<div><%= f.hidden_field :craving, value: true %></div>
<%= f.submit t('zombie.craving') %>
<% end %>
<% end %>
我想測試
it "should increment the craving zombie count" do
expect { click_button t('zombie.craving') }.to change(Zombie.where(craving: true), :count).by(1)
end
但如果我這樣做,水豚因爲有殭屍檢測儘可能多的曖昧比賽......
哪有我爲了規避這個?
使用殭屍。真棒。 :-) – Johannes