2017-08-17 22:00:37 +05:30
|
|
|
require_relative '../qa'
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
Dir[::File.join(__dir__, 'support', '**', '*.rb')].each { |f| require f }
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
RSpec.configure do |config|
|
2018-12-13 13:39:08 +05:30
|
|
|
config.before do |example|
|
|
|
|
QA::Runtime::Logger.debug("Starting test: #{example.full_description}") if QA::Runtime::Env.debug?
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
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.shared_context_metadata_behavior = :apply_to_host_groups
|
|
|
|
config.disable_monkey_patching!
|
|
|
|
config.expose_dsl_globally = true
|
|
|
|
config.profile_examples = 10
|
|
|
|
config.order = :random
|
|
|
|
Kernel.srand config.seed
|
|
|
|
end
|