Sha256: 96a0ac6e2efae767fd99ebf0f769df0ccfb932ced6f25a6717641a0d940f5515

Contents?: true

Size: 1.17 KB

Versions: 1

Compression:

Stored size: 1.17 KB

Contents

# frozen_string_literal: true

require "datadog/tracing/contrib"
require "datadog/tracing/contrib/integration"

require_relative "configuration/settings"
require_relative "patcher"

module Datadog
  module CI
    module Contrib
      module RSpec
        # Description of RSpec integration
        class Integration
          include Datadog::Tracing::Contrib::Integration

          MINIMUM_VERSION = Gem::Version.new("3.0.0")

          register_as :rspec, auto_patch: true

          def self.version
            Gem.loaded_specs["rspec-core"] \
              && Gem.loaded_specs["rspec-core"].version
          end

          def self.loaded?
            !defined?(::RSpec).nil? && !defined?(::RSpec::Core).nil? && \
              !defined?(::RSpec::Core::Example).nil?
          end

          def self.compatible?
            super && version >= MINIMUM_VERSION
          end

          # test environments should not auto instrument test libraries
          def auto_instrument?
            false
          end

          def new_configuration
            Configuration::Settings.new
          end

          def patcher
            Patcher
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
datadog-ci-0.1.1 lib/datadog/ci/contrib/rspec/integration.rb