Sha256: 8c6cac18cd13329e9495fa6bce20d28f123dec3a09d28ea770c078f2f580083d
Contents?: true
Size: 1.32 KB
Versions: 48
Compression:
Stored size: 1.32 KB
Contents
# frozen_string_literal: true require 'rails_helper' module Spree RSpec.describe OrderUpdateAttributes do let(:order) { create(:order) } let(:payment_method) { create(:payment_method) } let(:request_env) { nil } let(:update) { described_class.new(order, attributes, request_env: request_env) } context 'empty attributes' do let(:attributes){ {} } it 'succeeds' do expect(update.apply).to be_truthy end end context 'with coupon code' do let(:attributes){ { coupon_code: 'abc123' } } it "sets coupon code" do expect(update.apply).to be_truthy expect(order.coupon_code).to eq('abc123') end end context 'with payment attributes' do let(:attributes) do { payments_attributes: [ { payment_method_id: payment_method.id, source_attributes: attributes_for(:credit_card) } ] } end context 'with params and a request_env' do let(:request_env){ { 'USER_AGENT' => 'Firefox' } } it 'sets the request_env on the payment' do expect(update.apply).to be_truthy expect(order.payments.length).to eq 1 expect(order.payments[0].request_env).to eq({ 'USER_AGENT' => 'Firefox' }) end end end end end
Version data entries
48 entries across 48 versions & 2 rubygems