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.2.0 test/stripe/alipay_account_test.rb
stripe-4.1.0 test/stripe/alipay_account_test.rb
stripe-4.0.3 test/stripe/alipay_account_test.rb
stripe-4.0.2 test/stripe/alipay_account_test.rb
stripe-4.0.1 test/stripe/alipay_account_test.rb
stripe-4.0.0 test/stripe/alipay_account_test.rb
stripe-3.31.1 test/stripe/alipay_account_test.rb
stripe-3.31.0 test/stripe/alipay_account_test.rb
stripe-3.30.0 test/stripe/alipay_account_test.rb
stripe-3.29.0 test/stripe/alipay_account_test.rb
stripe-3.28.0 test/stripe/alipay_account_test.rb
stripe-3.27.0 test/stripe/alipay_account_test.rb
stripe-3.26.1 test/stripe/alipay_account_test.rb
stripe-3.26.0 test/stripe/alipay_account_test.rb
stripe-3.25.0 test/stripe/alipay_account_test.rb
stripe-3.24.0 test/stripe/alipay_account_test.rb