Sha256: 46407c34a797d6644371d49a4505a15087f882b62eab2a0583ddb79897a45c88

Contents?: true

Size: 993 Bytes

Versions: 20

Compression:

Stored size: 993 Bytes

Contents

require File.expand_path("../../test_helper", __FILE__)

module Stripe
  class AlipayAccountTest < Test::Unit::TestCase
    context "#resource_url" do
      should "return a resource URL" do
        alipay_account = Stripe::AlipayAccount.construct_from(
          id: "aliacc_123",
          customer: "cus_123"
        )
        assert_equal "/v1/customers/cus_123/sources/aliacc_123",
                     alipay_account.resource_url
      end

      should "raise without a customer" do
        alipay_account = Stripe::AlipayAccount.construct_from(id: "aliacc_123")
        assert_raises NotImplementedError do
          alipay_account.resource_url
        end
      end
    end

    should "raise on #retrieve" do
      assert_raises NotImplementedError do
        Stripe::AlipayAccount.retrieve("aliacc_123")
      end
    end

    should "raise on #update" do
      assert_raises NotImplementedError do
        Stripe::AlipayAccount.update("aliacc_123", {})
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
stripe-3.14.0 test/stripe/alipay_account_test.rb
stripe-3.13.1 test/stripe/alipay_account_test.rb
stripe-3.13.0 test/stripe/alipay_account_test.rb
stripe-3.12.1 test/stripe/alipay_account_test.rb
stripe-3.12.0 test/stripe/alipay_account_test.rb
stripe-3.11.0 test/stripe/alipay_account_test.rb
stripe-3.10.0 test/stripe/alipay_account_test.rb
stripe-3.9.2 test/stripe/alipay_account_test.rb
stripe-3.9.1 test/stripe/alipay_account_test.rb
stripe-3.9.0 test/stripe/alipay_account_test.rb
stripe-3.8.2 test/stripe/alipay_account_test.rb
stripe-3.8.1 test/stripe/alipay_account_test.rb
stripe-3.8.0 test/stripe/alipay_account_test.rb
stripe-3.7.0 test/stripe/alipay_account_test.rb
stripe-3.6.0 test/stripe/alipay_account_test.rb
stripe-3.5.3 test/stripe/alipay_account_test.rb
stripe-3.5.2 test/stripe/alipay_account_test.rb
stripe-3.5.1 test/stripe/alipay_account_test.rb
stripe-3.5.0 test/stripe/alipay_account_test.rb
stripe-3.4.1 test/stripe/alipay_account_test.rb