Sha256: 89e319b9607e00399564b595a3cb0ca8c09225997b8d2d7b6d5efa4061396eb7

Contents?: true

Size: 1 KB

Versions: 36

Compression:

Stored size: 1 KB

Contents

# frozen_string_literal: true

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

36 entries across 36 versions & 1 rubygems

Version Path
stripe-4.18.0 test/stripe/alipay_account_test.rb
stripe-4.17.0 test/stripe/alipay_account_test.rb
stripe-4.16.0 test/stripe/alipay_account_test.rb
stripe-4.15.0 test/stripe/alipay_account_test.rb
stripe-4.14.0 test/stripe/alipay_account_test.rb
stripe-4.13.0 test/stripe/alipay_account_test.rb
stripe-4.12.0 test/stripe/alipay_account_test.rb
stripe-4.11.0 test/stripe/alipay_account_test.rb
stripe-4.10.0 test/stripe/alipay_account_test.rb
stripe-4.9.1 test/stripe/alipay_account_test.rb
stripe-4.9.0 test/stripe/alipay_account_test.rb
stripe-4.8.1 test/stripe/alipay_account_test.rb
stripe-4.8.0 test/stripe/alipay_account_test.rb
stripe-4.7.1 test/stripe/alipay_account_test.rb
stripe-4.7.0 test/stripe/alipay_account_test.rb
stripe-4.6.0 test/stripe/alipay_account_test.rb
stripe-4.5.0 test/stripe/alipay_account_test.rb
stripe-4.4.1 test/stripe/alipay_account_test.rb
stripe-4.4.0 test/stripe/alipay_account_test.rb
stripe-4.3.0 test/stripe/alipay_account_test.rb