Class: Datadog::CI::Contrib::RSpec::Integration

Inherits:
Object
  • Object
show all
Includes:
Datadog::Contrib::Integration
Defined in:
lib/datadog/ci/contrib/rspec/integration.rb

Overview

Description of RSpec integration

Constant Summary collapse

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

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Datadog::Contrib::Integration

included

Class Method Details

.compatible?Boolean

Returns:

  • (Boolean)


29
30
31
# File 'lib/datadog/ci/contrib/rspec/integration.rb', line 29

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

.loaded?Boolean

Returns:

  • (Boolean)


24
25
26
27
# File 'lib/datadog/ci/contrib/rspec/integration.rb', line 24

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

.versionObject



19
20
21
22
# File 'lib/datadog/ci/contrib/rspec/integration.rb', line 19

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

Instance Method Details

#auto_instrument?Boolean

test environments should not auto instrument test libraries

Returns:

  • (Boolean)


34
35
36
# File 'lib/datadog/ci/contrib/rspec/integration.rb', line 34

def auto_instrument?
  false
end

#default_configurationObject



38
39
40
# File 'lib/datadog/ci/contrib/rspec/integration.rb', line 38

def default_configuration
  Configuration::Settings.new
end

#patcherObject



42
43
44
# File 'lib/datadog/ci/contrib/rspec/integration.rb', line 42

def patcher
  Patcher
end