Sha256: b01fd9cd438e4e292c153518aa2ebe34048d78e5afb660d0503f1ef3e3bfd1f7
Contents?: true
Size: 1.38 KB
Versions: 2
Compression:
Stored size: 1.38 KB
Contents
module Braintree class TestingGateway # :nodoc: def initialize(gateway) @gateway = gateway @config = gateway.config @config.assert_has_access_token_or_keys @transaction_gateway = TransactionGateway.new(gateway) end def settle(transaction_id) check_environment response = @config.http.put("#{@config.base_merchant_path}/transactions/#{transaction_id}/settle") @transaction_gateway._handle_transaction_response(response) end def settlement_confirm(transaction_id) check_environment response = @config.http.put("#{@config.base_merchant_path}/transactions/#{transaction_id}/settlement_confirm") @transaction_gateway._handle_transaction_response(response) end def settlement_decline(transaction_id) check_environment response = @config.http.put("#{@config.base_merchant_path}/transactions/#{transaction_id}/settlement_decline") @transaction_gateway._handle_transaction_response(response) end def settlement_pending(transaction_id) check_environment response = @config.http.put("#{@config.base_merchant_path}/transactions/#{transaction_id}/settlement_pending") @transaction_gateway._handle_transaction_response(response) end def check_environment raise TestOperationPerformedInProduction if Braintree::Configuration.environment == :production end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
braintree-2.47.0 | lib/braintree/testing_gateway.rb |
braintree-2.46.0 | lib/braintree/testing_gateway.rb |