Sha256: a41376cdd33ae7dadc9aa18fa11542a196ad219ed4285dbd1d0984232b5b3b08

Contents?: true

Size: 890 Bytes

Versions: 2

Compression:

Stored size: 890 Bytes

Contents

$:.unshift(File.expand_path('../lib', File.dirname(__FILE__)))

require 'logger'
require 'pry'
require 'yq'

LOGGER = Logger.new('/dev/null')
SPEC_ROOT = __dir__
WORK_ROOT = File.expand_path(File.join(SPEC_ROOT, '..'))

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

  if config.files_to_run.one?
    # Use the documentation formatter for detailed output,
    # unless a formatter has already been configured
    # (e.g. via a command-line flag).
    config.default_formatter = 'doc'
  end

  config.example_status_persistence_file_path = File.join(SPEC_ROOT, 'helpers', 'failures.txt')

  Kernel.srand config.seed
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
yq-0.5.0 spec/spec_helper.rb
yq-0.4.1 spec/spec_helper.rb