2017-09-10 17:25:29 +05:30
|
|
|
RSpec.configure do |config|
|
|
|
|
config.before(:each) do |example|
|
2018-03-17 18:26:18 +05:30
|
|
|
if example.metadata[:disable_gitaly]
|
|
|
|
allow(Gitlab::GitalyClient).to receive(:feature_enabled?).and_return(false)
|
|
|
|
else
|
|
|
|
next if example.metadata[:skip_gitaly_mock]
|
|
|
|
|
|
|
|
allow(Gitlab::GitalyClient).to receive(:feature_enabled?).and_return(true)
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|