Sha256: f4039745c4948369b8965886a49dbf49ab038b7920d355b5f02728808756b343

Contents?: true

Size: 800 Bytes

Versions: 4

Compression:

Stored size: 800 Bytes

Contents

# frozen_string_literal: true

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

module Stripe
  class TaxIdTest < Test::Unit::TestCase
    context "#resource_url" do
      should "return a resource URL" do
        tax_id = Stripe::TaxId.construct_from(
          id: "txi_123",
          customer: "cus_123"
        )
        assert_equal "/v1/customers/cus_123/tax_ids/txi_123",
                     tax_id.resource_url
      end

      should "raise without a customer" do
        tax_id = Stripe::TaxId.construct_from(id: "txi_123")
        assert_raises NotImplementedError do
          tax_id.resource_url
        end
      end
    end

    should "raise on #retrieve" do
      assert_raises NotImplementedError do
        Stripe::TaxId.retrieve("txi_123")
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
stripe-4.18.0 test/stripe/tax_id_test.rb
stripe-4.17.0 test/stripe/tax_id_test.rb
stripe-4.16.0 test/stripe/tax_id_test.rb
stripe-4.15.0 test/stripe/tax_id_test.rb