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.18.0 test/stripe/country_spec_test.rb
stripe-4.17.0 test/stripe/country_spec_test.rb
stripe-4.16.0 test/stripe/country_spec_test.rb
stripe-4.15.0 test/stripe/country_spec_test.rb
stripe-4.14.0 test/stripe/country_spec_test.rb
stripe-4.13.0 test/stripe/country_spec_test.rb
stripe-4.12.0 test/stripe/country_spec_test.rb
stripe-4.11.0 test/stripe/country_spec_test.rb
stripe-4.10.0 test/stripe/country_spec_test.rb
stripe-4.9.1 test/stripe/country_spec_test.rb
stripe-4.9.0 test/stripe/country_spec_test.rb
stripe-4.8.1 test/stripe/country_spec_test.rb
stripe-4.8.0 test/stripe/country_spec_test.rb
stripe-4.7.1 test/stripe/country_spec_test.rb
stripe-4.7.0 test/stripe/country_spec_test.rb
stripe-4.6.0 test/stripe/country_spec_test.rb
stripe-4.5.0 test/stripe/country_spec_test.rb
stripe-4.4.1 test/stripe/country_spec_test.rb
stripe-4.4.0 test/stripe/country_spec_test.rb
stripe-4.3.0 test/stripe/country_spec_test.rb