Sha256: b6e55101a631a0f0fcdce9b6d636af4679cb5aa283f7dc1b1efd38233fc6d565

Contents?: true

Size: 1.14 KB

Versions: 1

Compression:

Stored size: 1.14 KB

Contents

# typed: false

require_relative '../../../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 default_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
ddtrace-1.3.0 lib/datadog/ci/contrib/rspec/integration.rb