Sha256: d61a71dff06ea9c237bc9b22c861a220cc145a1178a2c56474791730c2f7efe5
Contents?: true
Size: 957 Bytes
Versions: 10
Compression:
Stored size: 957 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' RSpec.describe SolidusBolt::Users::SyncPaymentSourcesService, :vcr, :bolt_configuration do subject(:sync_payment_sources) do described_class.call(user: user, access_token: ENV.fetch('BOLT_ACCESS_TOKEN', 'Fake_access_token')) end let(:user) { create(:user) } let(:bolt_payment_method) { create(:bolt_payment_method) } describe '#call' do before { bolt_payment_method } it 'creates a new payment source with card ID' do expect { sync_payment_sources }.to change { SolidusBolt::PaymentSource.count }.by(1) bolt_payment_source = SolidusBolt::PaymentSource.last expect(bolt_payment_source.card_id).to be_present expect(bolt_payment_source.card_expiration).to be_present expect(bolt_payment_source.payment_method_id).to eq(bolt_payment_method.id) expect(user.wallet_payment_sources.last.payment_source).to eq(bolt_payment_source) end end end
Version data entries
10 entries across 10 versions & 1 rubygems