require 'bundler/setup' require 'rspec' require 'webmock' require 'awesome_print' require 'swiftype-app-search' RSpec.shared_context "App Search Credentials" do let(:as_api_key) { ENV.fetch('AS_API_KEY', 'API_KEY') } # AS_ACCOUNT_HOST_KEY is deprecated let(:as_host_identifier) { ENV['AS_ACCOUNT_HOST_KEY'] || ENV['AS_HOST_IDENTIFIER'] || 'ACCOUNT_HOST_KEY' } let(:as_api_endpoint) { ENV.fetch('AS_API_ENDPOINT', nil) } let(:client_options) do { :api_key => as_api_key, :host_identifier => as_host_identifier }.tap do |opts| opts[:api_endpoint] = as_api_endpoint unless as_api_endpoint.nil? end end end 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" end