2017-03-28 21:23:45 -04:00
|
|
|
if Gitlab::GitalyClient.enabled?
|
|
|
|
RSpec.configure do |config|
|
2017-05-31 17:06:01 -04:00
|
|
|
config.before(:each) do |example|
|
|
|
|
next if example.metadata[:skip_gitaly_mock]
|
2017-03-28 21:23:45 -04:00
|
|
|
allow(Gitlab::GitalyClient).to receive(:feature_enabled?).and_return(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|