Sha256: 31b784c7e62f766cd769a2143391ee1a4c8418c3c95065b2044426a0b3122b7d
Contents?: true
Size: 419 Bytes
Versions: 7
Compression:
Stored size: 419 Bytes
Contents
require 'test_helper' class EpsilonGatewayTest < MiniTest::Test def test_set_proxy_address_and_port ActiveMerchant::Billing::EpsilonGateway.proxy_address = 'http://myproxy.dev' ActiveMerchant::Billing::EpsilonGateway.proxy_port = 1234 gateway = ActiveMerchant::Billing::EpsilonGateway.new assert_equal(gateway.proxy_address, 'http://myproxy.dev') assert_equal(gateway.proxy_port, 1234) end end
Version data entries
7 entries across 7 versions & 1 rubygems