Displaying 1 result from an estimated 1 matches for "line_item_path".
2014 May 02
0
What does assign method do in testing ?
...ns for use in views._
(http://guides.rubyonrails.org/testing.html#the-four-hashes-of-the-apocalypse)
I have a code :-
test "should update line_item" do
patch :update, id:@line_item, line_item: {
cart_id:@line_item.cart_id, product_id:@line_item.product_id}
assert_redirected_to line_item_path(assigns(:line_item))
end
Does *assigns(:line_item)* give back an instance of the model _LineItem_
? I am bit confused with the use of the method *assigns*.
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rai...