Sha256: 52b6a6db5dcc44833fdde339a781290447b56d8b70915035001d1e6bda564893

Contents?: true

Size: 2 KB

Versions: 10

Compression:

Stored size: 2 KB

Contents

# frozen_string_literal: true
require 'linkeddata'
require 'json'
require 'engine_cart'
require 'simplecov'
require 'coveralls'
require 'byebug' unless ENV['TRAVIS']

ENV["RAILS_ENV"] ||= "test"

SimpleCov.formatter = Coveralls::SimpleCov::Formatter
SimpleCov.start('rails') do
  add_filter '/.internal_test_app'
  add_filter '/lib/generators'
  add_filter '/spec'
  add_filter '/tasks'
  add_filter '/lib/qa/version.rb'
  add_filter '/lib/qa/engine.rb'
end
SimpleCov.command_name 'spec'

EngineCart.load_application!
Coveralls.wear!

require 'rspec/rails'
require 'webmock/rspec'
# require 'pry'

# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Dir[File.join(File.dirname(__FILE__), "support/**/*.rb")].each { |f| require f }

RSpec.configure do |config|
  config.fixture_path = File.expand_path("../fixtures", __FILE__)

  config.use_transactional_fixtures = true

  # If true, the base class of anonymous controllers will be inferred
  # automatically. This will be the default behavior in future versions of
  # rspec-rails.
  config.infer_base_class_for_anonymous_controllers = false

  # 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"

  # Disable Webmock if we choose so we can test against the authorities, instead of their mocks
  WebMock.disable! if ENV["WEBMOCK"] == "disabled"

  config.infer_spec_type_from_file_location!
end

def webmock_fixture(fixture)
  File.new File.expand_path(File.join("../fixtures", fixture), __FILE__)
end

# returns the file contents
def load_fixture_file(fname)
  File.open(Rails.root.join('spec', 'fixtures', fname)) do |f|
    return f.read
  end
end

QaServer.config.suppress_performance_gathering = true
QaServer.config.suppress_logging_performance_details = true
QaServer.config.preferred_time_zone_name = 'Eastern Time (US & Canada)'

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
qa_server-8.0.1 spec/spec_helper.rb
qa_server-7.9.2 spec/spec_helper.rb
qa_server-7.9.1 spec/spec_helper.rb
qa_server-7.9.0 spec/spec_helper.rb
qa_server-7.8.0 spec/spec_helper.rb
qa_server-7.7.1 spec/spec_helper.rb
qa_server-7.7.0 spec/spec_helper.rb
qa_server-7.6.0 spec/spec_helper.rb
qa_server-7.5.1 spec/spec_helper.rb
qa_server-7.5.0 spec/spec_helper.rb