Sha256: bceed6eac84fe18c3853ac05a2ad8f9e260bc92f13c8f7b6cff1077bd4f80222
Contents?: true
Size: 1.26 KB
Versions: 47
Compression:
Stored size: 1.26 KB
Contents
# frozen_string_literal: true require 'spec_helper' describe 'current order tracking', type: :controller do let!(:store) { create(:store) } let(:user) { create(:user) } controller(Spree::StoreController) do def index head :ok end end let(:order) { FactoryBot.create(:order) } it 'automatically tracks who the order was created by & IP address' do allow(controller).to receive_messages(try_spree_current_user: user) get :index expect(controller.current_order(create_order_if_necessary: true).created_by).to eq controller.try_spree_current_user expect(controller.current_order.last_ip_address).to eq "0.0.0.0" end context "current order creation" do before { allow(controller).to receive_messages(try_spree_current_user: user) } it "doesn't create a new order out of the blue" do expect { get :index }.not_to change { Spree::Order.count } end end end describe Spree::OrdersController, type: :controller do let(:user) { create(:user) } before { allow(controller).to receive_messages(try_spree_current_user: user) } describe Spree::OrdersController do it "doesn't create a new order out of the blue" do expect { get :edit }.not_to change { Spree::Order.count } end end end
Version data entries
47 entries across 47 versions & 2 rubygems