現在、次の形式で出力する好き/嫌いな投票機能があります。
好きな人や嫌いな人は、好き嫌いの合計数を更新するクリック可能なリンクです ((#) で表されます)。
好き/嫌いの数が正しいことを確認するキュウリのテストを書いています。チェックしたい
...
Then I should see "like (2) dislike (0)"
しかし、キュウリのテストには合格しません。誰かアドバイスはありますか?ビューは次のとおりです。
<%= link_to "like", url_for(:action => 'like', :controller => 'comments', :id => c.id) %>
(<%= c.comment_votes.nil? ? 0 : c.comment_votes.count(:conditions => {:score => 1}) %>)
<%= link_to "dislike", url_for(:action => 'dislike', :controller => 'comments', :id => c.id) %>
(<%= c.comment_votes.nil? ? 0 : c.comment_votes.count(:conditions => {:score => -1}) %>)