Sha256: 8616c5ea226ea70ae6a9fa1c0d10a0761863029a0b7c7ce272bdcbeac58d7c3a

Contents?: true

Size: 764 Bytes

Versions: 7

Compression:

Stored size: 764 Bytes

Contents

require 'spec_helper'

describe Spree::Gateway::AuthorizeNetCim do
  let (:gateway) { described_class.new }

  context '.provider_class' do
    it 'is a AuthorizeNetCim gateway' do
      expect(gateway.provider_class).to eq ::Spree::Gateway::AuthorizeNetCim
    end
  end

  context '.payment_profiles_supported?' do
    it 'return true' do
      expect(subject.payment_profiles_supported?).to be true
    end
  end

  describe 'options' do
    it 'include :test => true when :test_mode is true' do
      gateway.preferred_test_mode = true
      expect(gateway.options[:test]).to be true
    end

    it 'does not include :test when :test_mode is false' do
      gateway.preferred_test_mode = false
      expect(gateway.options[:test]).to be_nil
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
solidus_gateway-1.3.0 spec/models/gateway/authorize_net_cim_spec.rb
solidus_gateway-1.2.0 spec/models/gateway/authorize_net_cim_spec.rb
solidus_gateway-1.1.1 spec/models/gateway/authorize_net_cim_spec.rb
solidus_gateway-1.1.0 spec/models/gateway/authorize_net_cim_spec.rb
solidus_gateway-1.0.1 spec/models/gateway/authorize_net_cim_spec.rb
solidus_gateway-0.9.0 spec/models/gateway/authorize_net_cim_spec.rb
solidus_gateway-1.0.0 spec/models/gateway/authorize_net_cim_spec.rb