Sha256: d3a84869bd026443364e7940c74870ac7d4357ea79ad510eaff046935fbae353

Contents?: true

Size: 580 Bytes

Versions: 36

Compression:

Stored size: 580 Bytes

Contents

# frozen_string_literal: true

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

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

36 entries across 36 versions & 1 rubygems

Version Path
stripe-4.2.0 test/stripe/country_spec_test.rb
stripe-4.1.0 test/stripe/country_spec_test.rb
stripe-4.0.3 test/stripe/country_spec_test.rb
stripe-4.0.2 test/stripe/country_spec_test.rb
stripe-4.0.1 test/stripe/country_spec_test.rb
stripe-4.0.0 test/stripe/country_spec_test.rb
stripe-3.31.1 test/stripe/country_spec_test.rb
stripe-3.31.0 test/stripe/country_spec_test.rb
stripe-3.30.0 test/stripe/country_spec_test.rb
stripe-3.29.0 test/stripe/country_spec_test.rb
stripe-3.28.0 test/stripe/country_spec_test.rb
stripe-3.27.0 test/stripe/country_spec_test.rb
stripe-3.26.1 test/stripe/country_spec_test.rb
stripe-3.26.0 test/stripe/country_spec_test.rb
stripe-3.25.0 test/stripe/country_spec_test.rb
stripe-3.24.0 test/stripe/country_spec_test.rb