Sha256: a758b0ad32c225957319a9281b305775154535d85f63a065fa50865ec700fb0c

Contents?: true

Size: 673 Bytes

Versions: 5

Compression:

Stored size: 673 Bytes

Contents

require 'spec_helper'

describe Spree::Gateway::PayflowPro do
  let(:gateway) { described_class.create!(name: 'PayflowPro', stores: [::Spree::Store.default]) }

  context '.provider_class' do
    it 'is a Payflow gateway' do
      expect(gateway.provider_class).to eq ::ActiveMerchant::Billing::PayflowGateway
    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 false
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
spree_gateway-3.11.0 spec/models/gateway/payflow_pro_spec.rb
spree_gateway-3.10.0 spec/models/gateway/payflow_pro_spec.rb
archetype_spree_gateway-3.9.5.1 spec/models/gateway/payflow_pro_spec.rb
archetype_spree_gateway-3.9.5 spec/models/gateway/payflow_pro_spec.rb
spree_gateway-3.9.4 spec/models/gateway/payflow_pro_spec.rb