Sha256: d366aa00e80a9db865e37a2caefb95ab5364475be3588a3a0b04ee2861934bce

Contents?: true

Size: 1.43 KB

Versions: 21

Compression:

Stored size: 1.43 KB

Contents

# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.

# frozen_string_literal: true

require 'simplecov'
SimpleCov.start
require 'elastic/enterprise_search'
require 'rspec'
require 'vcr'

RSpec.configure do |config|
  # Run specs in random order to surface order dependencies. If you find an
  # order dependency and want to debug it, you can fix the order by providing
  # the seed, which is printed after each run.
  #     --seed 1234
  config.order = 'random'

  config.add_formatter('documentation')
  config.add_formatter('RspecJunitFormatter', 'enterprise-search-junit.xml')

  VCR.configure do |c|
    c.cassette_library_dir = 'spec/fixtures/vcr'
    c.hook_into :webmock
    c.allow_http_connections_when_no_cassette = true
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
elastic-enterprise-search-7.17.1 spec/spec_helper.rb
elastic-enterprise-search-8.4.0 spec/spec_helper.rb
elastic-enterprise-search-8.3.0 spec/spec_helper.rb
elastic-enterprise-search-8.2.1 spec/spec_helper.rb
elastic-enterprise-search-8.1.1 spec/spec_helper.rb
elastic-enterprise-search-8.0.1 spec/spec_helper.rb
elastic-enterprise-search-8.2.0 spec/spec_helper.rb
elastic-enterprise-search-8.1.0 spec/spec_helper.rb
elastic-enterprise-search-8.0.0 spec/spec_helper.rb
elastic-enterprise-search-8.0.0.pre spec/spec_helper.rb
elastic-enterprise-search-7.17.0 spec/spec_helper.rb
elastic-enterprise-search-7.16.0 spec/spec_helper.rb
elastic-enterprise-search-7.15.1 spec/spec_helper.rb
elastic-enterprise-search-7.14.1 spec/spec_helper.rb
elastic-enterprise-search-7.15.0 spec/spec_helper.rb
elastic-enterprise-search-7.14.0 spec/spec_helper.rb
elastic-enterprise-search-7.12.1 spec/spec_helper.rb
elastic-enterprise-search-7.13.0 spec/spec_helper.rb
elastic-enterprise-search-7.13.0.pre spec/spec_helper.rb
elastic-enterprise-search-7.12.0 spec/spec_helper.rb