summaryrefslogtreecommitdiff
path: root/spec/support/rspec.rb
blob: dffab22d8b5a9738717a6998684e4ed965954b48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require_relative "helpers/stub_configuration"
require_relative "helpers/stub_object_storage"
require_relative "helpers/stub_env"

RSpec.configure do |config|
  config.mock_with :rspec
  config.raise_errors_for_deprecations!

  config.include StubConfiguration
  config.include StubObjectStorage
  config.include StubENV
end