67 sor
1,6 KiB
Ruby
67 sor
1,6 KiB
Ruby
#---
|
|
# Excerpted from "Agile Web Development with Rails",
|
|
# published by The Pragmatic Bookshelf.
|
|
# Copyrights apply to this code. It may not be used to create training material,
|
|
# courses, books, articles, and the like. Contact us if you are in doubt.
|
|
# We make no guarantees that this code is fit for any purpose.
|
|
# Visit http://www.pragmaticprogrammer.com/titles/rails4 for more book information.
|
|
#---
|
|
require 'test_helper'
|
|
|
|
class OrdersControllerTest < ActionController::TestCase
|
|
setup do
|
|
@order = orders(:one)
|
|
end
|
|
|
|
test "should get index" do
|
|
get :index
|
|
assert_response :success
|
|
assert_not_nil assigns(:orders)
|
|
end
|
|
|
|
test "requires item in cart" do
|
|
get :new
|
|
assert_redirected_to store_path
|
|
assert_equal flash[:notice], 'Your cart is empty'
|
|
end
|
|
|
|
test "should get new" do
|
|
cart = Cart.create
|
|
session[:cart_id] = cart.id
|
|
LineItem.create(cart: cart, product: products(:ruby))
|
|
|
|
get :new
|
|
assert_response :success
|
|
end
|
|
|
|
test "should create order" do
|
|
assert_difference('Order.count') do
|
|
post :create, order: @order.attributes
|
|
end
|
|
|
|
assert_redirected_to store_path
|
|
end
|
|
|
|
test "should show order" do
|
|
get :show, id: @order.to_param
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get edit" do
|
|
get :edit, id: @order.to_param
|
|
assert_response :success
|
|
end
|
|
|
|
test "should update order" do
|
|
put :update, id: @order.to_param, order: @order.attributes
|
|
assert_redirected_to order_path(assigns(:order))
|
|
end
|
|
|
|
test "should destroy order" do
|
|
assert_difference('Order.count', -1) do
|
|
delete :destroy, id: @order.to_param
|
|
end
|
|
|
|
assert_redirected_to orders_path
|
|
end
|
|
end
|