Sha256: 2eab17c42c895f35a2bc1ddf21931c2a81b2c32e82df94de4f5b49b48821eff1

Contents?: true

Size: 653 Bytes

Versions: 35

Compression:

Stored size: 653 Bytes

Contents

require 'spec_helper'

describe Spree::Gateway::PayJunction do
  let(:gateway) { described_class.create!(name: 'PayJunction') }

  context '.provider_class' do
    it 'is a PayJunction gateway' do
      expect(gateway.provider_class).to eq ::ActiveMerchant::Billing::PayJunctionGateway
    end
  end

  describe 'options' do
    it 'include :test => true in  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 false
    end
  end
end

Version data entries

35 entries across 35 versions & 2 rubygems

Version Path
spree_gateway-3.9.3 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.9.2 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.9.0 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.8.0 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.7.5 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.7.4 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.7.3 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.7.2 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.7.1 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.7.0 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.6.7 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.3.7 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.6.5 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.6.4 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.3.5 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.6.1 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.6.0 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.4.1 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.4.0 spec/models/gateway/pay_junction_spec.rb
spree_gateway-3.3.3 spec/models/gateway/pay_junction_spec.rb