Sha256: 0d634b64ba0eea2fab252fe6031a1915f07071c11b0a3443429c26976faf4ffd

Contents?: true

Size: 465 Bytes

Versions: 1

Compression:

Stored size: 465 Bytes

Contents

require_relative 'support/coverage'

require 'dry/initializer'

begin
  require 'pry'
rescue LoadError
  nil
end

RSpec.configure do |config|
  config.order = :random
  config.filter_run focus: true
  config.run_all_when_everything_filtered = true

  # Prepare the Test namespace for constants defined in specs
  config.around(:each) do |example|
    Test = Class.new(Module)
    example.run
    Object.send :remove_const, :Test
  end

  config.warnings = true
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dry-initializer-3.0.3 spec/spec_helper.rb