test/stripe_test.rb in stripe-5.30.0 vs test/stripe_test.rb in stripe-5.31.0

- old
+ new

@@ -112,9 +112,14 @@ should "allow api_base to be configured" do Stripe.api_base = "https://other.stripe.com" assert_equal "https://other.stripe.com", Stripe.api_base end + should "allow api_version to be configured" do + Stripe.api_version = "2018-02-28" + assert_equal "2018-02-28", Stripe.api_version + end + should "allow connect_base to be configured" do Stripe.connect_base = "https://other.stripe.com" assert_equal "https://other.stripe.com", Stripe.connect_base end