Sha256: 719f4974ae9c37c4b36412984c26fc4192dc624af10b12dbd9ef38e4578c8518

Contents?: true

Size: 655 Bytes

Versions: 3

Compression:

Stored size: 655 Bytes

Contents

require 'sidekiq/testing'

if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
  YAML::ENGINE.yamler = 'psych'
end

RSpec.configure do |config|
  config.expect_with :rspec do |expectations|
    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
  end

  config.mock_with :rspec do |mocks|
    mocks.verify_partial_doubles = true
  end

  config.filter_run :focus
  config.run_all_when_everything_filtered = true

  config.disable_monkey_patching!

  config.warnings = true

  if config.files_to_run.one?
    config.default_formatter = 'doc'
  end

  config.profile_examples = 0

  config.order = :random

  Kernel.srand config.seed
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
wisper-sidekiq-compat-2.3.0 spec/spec_helper.rb
wisper-sidekiq-compat-2.1.0 spec/spec_helper.rb
wisper-sidekiq-compat-2.0.0 spec/spec_helper.rb