cart creation backend logic is at place / adding items in progress
This commit is contained in:
49
back-office/test/controllers/carts_controller_test.rb
Normal file
49
back-office/test/controllers/carts_controller_test.rb
Normal file
@@ -0,0 +1,49 @@
|
||||
require 'test_helper'
|
||||
|
||||
class CartsControllerTest < ActionController::TestCase
|
||||
setup do
|
||||
@cart = carts(:one)
|
||||
end
|
||||
|
||||
test "should get index" do
|
||||
get :index
|
||||
assert_response :success
|
||||
assert_not_nil assigns(:carts)
|
||||
end
|
||||
|
||||
test "should get new" do
|
||||
get :new
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should create cart" do
|
||||
assert_difference('Cart.count') do
|
||||
post :create, cart: { ordered: @cart.ordered, user_id: @cart.user_id }
|
||||
end
|
||||
|
||||
assert_redirected_to cart_path(assigns(:cart))
|
||||
end
|
||||
|
||||
test "should show cart" do
|
||||
get :show, id: @cart
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should get edit" do
|
||||
get :edit, id: @cart
|
||||
assert_response :success
|
||||
end
|
||||
|
||||
test "should update cart" do
|
||||
patch :update, id: @cart, cart: { ordered: @cart.ordered, user_id: @cart.user_id }
|
||||
assert_redirected_to cart_path(assigns(:cart))
|
||||
end
|
||||
|
||||
test "should destroy cart" do
|
||||
assert_difference('Cart.count', -1) do
|
||||
delete :destroy, id: @cart
|
||||
end
|
||||
|
||||
assert_redirected_to carts_path
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user