Sha256: b39f702f6ff57ff76b925398814c99463300261e3524c22b57f00a7ae191dac2
Contents?: true
Size: 866 Bytes
Versions: 10
Compression:
Stored size: 866 Bytes
Contents
require File.dirname(__FILE__) + '/../../test_helper' class PaypalModuleTest < Test::Unit::TestCase include ActiveMerchant::Billing::Integrations def test_notification_method assert_instance_of Paypal::Notification, Paypal.notification('name=cody') end def test_test_mode ActiveMerchant::Billing::Base.integration_mode = :test assert_equal 'https://www.sandbox.paypal.com/cgi-bin/webscr', Paypal.service_url end def test_production_mode ActiveMerchant::Billing::Base.integration_mode = :production assert_equal 'https://www.paypal.com/cgi-bin/webscr', Paypal.service_url end def test_invalid_mode ActiveMerchant::Billing::Base.integration_mode = :zoomin assert_raise(StandardError){ Paypal.service_url } end def test_return_method assert_instance_of Paypal::Return, Paypal.return('name=cody') end end
Version data entries
10 entries across 10 versions & 4 rubygems