我有一個名字路線:的Ruby-on-軌道:通過PARAMS通過路由及的link_to
map.up_vote 'up_vote', :controller => 'rep', :action => 'up_vote
但up_vote
需要兩個參數傳遞中,postID
和posterID
,我似乎無法圖如何做到這一點,但在集成測試中,我沒有任何問題。
部分:
link_to 'Up Vote', up_vote_path, {:postID => session[:user_post_id], :postersID => session[:poster_id]}
集成測試:
post up_vote_path,{:postID => @latest.id,:postersID => users(:bob).id} (this works ok)
1)什麼是對在部分回事?
2)我可以對我的測試做出什麼改變來解決這個問題?