Sha256: 267236e2a75e6d5030b0ad75891bfb421b98a74cb927402b95878d543677cb27

Contents?: true

Size: 1.08 KB

Versions: 52

Compression:

Stored size: 1.08 KB

Contents

# frozen_string_literal: true

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

module Stripe
  module Reporting
    class ReportRunTest < Test::Unit::TestCase
      should "be creatable" do
        report_run = Stripe::Reporting::ReportRun.create(
          parameters: {
            connected_account: "acct_123",
          },
          report_type: "activity.summary.1"
        )
        assert_requested :post, "#{Stripe.api_base}/v1/reporting/report_runs"
        assert report_run.is_a?(Stripe::Reporting::ReportRun)
      end

      should "be listable" do
        report_runs = Stripe::Reporting::ReportRun.list
        assert_requested :get, "#{Stripe.api_base}/v1/reporting/report_runs"
        assert report_runs.data.is_a?(Array)
        assert report_runs.data[0].is_a?(Stripe::Reporting::ReportRun)
      end

      should "be retrievable" do
        report_run = Stripe::Reporting::ReportRun.retrieve("frr_123")
        assert_requested :get, "#{Stripe.api_base}/v1/reporting/report_runs/frr_123"
        assert report_run.is_a?(Stripe::Reporting::ReportRun)
      end
    end
  end
end

Version data entries

52 entries across 52 versions & 2 rubygems

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