Sha256: b47ee690f34ee83f51112713cb7b77ff679e1af466b29d5fa14f4298395bcb09

Contents?: true

Size: 576 Bytes

Versions: 52

Compression:

Stored size: 576 Bytes

Contents

# frozen_string_literal: true

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

module Stripe
  class CountrySpecTest < Test::Unit::TestCase
    should "be listable" do
      c = Stripe::CountrySpec.list
      assert_requested :get, "#{Stripe.api_base}/v1/country_specs"
      assert c.data.is_a?(Array)
      assert c.data[0].is_a?(Stripe::CountrySpec)
    end

    should "be retrievable" do
      s = Stripe::CountrySpec.retrieve("US")
      assert_requested :get, "#{Stripe.api_base}/v1/country_specs/US"
      assert(s.is_a?(Stripe::CountrySpec))
    end
  end
end

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
stripe-5.31.0 test/stripe/country_spec_test.rb
stripe-5.30.0 test/stripe/country_spec_test.rb
stripe-5.29.1 test/stripe/country_spec_test.rb
stripe-5.29.0 test/stripe/country_spec_test.rb
stripe-5.28.0 test/stripe/country_spec_test.rb
stripe-5.27.0 test/stripe/country_spec_test.rb
stripe-5.26.0 test/stripe/country_spec_test.rb
stripe-5.25.0 test/stripe/country_spec_test.rb
stripe-5.24.0 test/stripe/country_spec_test.rb
stripe-5.23.1 test/stripe/country_spec_test.rb
stripe-5.23.0 test/stripe/country_spec_test.rb
stripe-5.22.0 test/stripe/country_spec_test.rb
stripe-5.21.0 test/stripe/country_spec_test.rb
stripe-5.20.0 test/stripe/country_spec_test.rb
stripe-5.19.0 test/stripe/country_spec_test.rb
stripe-5.18.0 test/stripe/country_spec_test.rb
stripe-5.17.0 test/stripe/country_spec_test.rb
stripe-5.16.0 test/stripe/country_spec_test.rb
stripe-5.15.0 test/stripe/country_spec_test.rb
stripe-5.14.0 test/stripe/country_spec_test.rb