Sha256: ce2e1a9a9f4c43c644d4c8d581287535165c857af305cb6335ab6af590c21c5e
Contents?: true
Size: 391 Bytes
Versions: 27
Compression:
Stored size: 391 Bytes
Contents
# frozen_string_literal: true require ::File.expand_path("../test_helper", __dir__) module Stripe class MandateTest < Test::Unit::TestCase should "be retrievable" do schedule = Stripe::Mandate.retrieve("mandate_123") assert_requested :get, "#{Stripe.api_base}/v1/mandates/mandate_123" assert schedule.is_a?(Stripe::Mandate) end end end
Version data entries
27 entries across 27 versions & 1 rubygems