Sha256: 1060fa6d8c34e08156df469169f54eb6775738c808b6d601477cea8b6580783d

Contents?: true

Size: 771 Bytes

Versions: 52

Compression:

Stored size: 771 Bytes

Contents

# frozen_string_literal: true

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

module Stripe
  module Reporting
    class ReportTypeTest < Test::Unit::TestCase
      should "be listable" do
        report_types = Stripe::Reporting::ReportType.list
        assert_requested :get, "#{Stripe.api_base}/v1/reporting/report_types"
        assert report_types.data.is_a?(Array)
        assert report_types.data[0].is_a?(Stripe::Reporting::ReportType)
      end

      should "be retrievable" do
        report_type = Stripe::Reporting::ReportType.retrieve("activity.summary.1")
        assert_requested :get, "#{Stripe.api_base}/v1/reporting/report_types/activity.summary.1"
        assert report_type.is_a?(Stripe::Reporting::ReportType)
      end
    end
  end
end

Version data entries

52 entries across 52 versions & 2 rubygems

Version Path
stripe-4.23.0 test/stripe/reporting/report_type_test.rb
stripe-4.22.1 test/stripe/reporting/report_type_test.rb
stripe-4.22.0 test/stripe/reporting/report_type_test.rb
bongloy-4.21.3 test/stripe/reporting/report_type_test.rb
stripe-4.21.3 test/stripe/reporting/report_type_test.rb
stripe-4.21.2 test/stripe/reporting/report_type_test.rb
stripe-4.21.1 test/stripe/reporting/report_type_test.rb
stripe-4.21.0 test/stripe/reporting/report_type_test.rb
stripe-4.20.1 test/stripe/reporting/report_type_test.rb
stripe-4.20.0 test/stripe/reporting/report_type_test.rb
stripe-4.19.0 test/stripe/reporting/report_type_test.rb
stripe-4.18.1 test/stripe/reporting/report_type_test.rb