Fix import helper spec when a previous spec stubs settings
This should use stub_omniauth_setting, not do it manually.
This commit is contained in:
parent
81d370d419
commit
08f754c6e8
1 changed files with 2 additions and 4 deletions
|
@ -28,12 +28,10 @@ describe ImportHelper do
|
|||
describe '#provider_project_link' do
|
||||
context 'when provider is "github"' do
|
||||
let(:github_server_url) { nil }
|
||||
let(:provider) { OpenStruct.new(name: 'github', url: github_server_url) }
|
||||
|
||||
before do
|
||||
setting = Settingslogic.new('name' => 'github')
|
||||
setting['url'] = github_server_url if github_server_url
|
||||
|
||||
allow(Gitlab.config.omniauth).to receive(:providers).and_return([setting])
|
||||
stub_omniauth_setting(providers: [provider])
|
||||
end
|
||||
|
||||
context 'when provider does not specify a custom URL' do
|
||||
|
|
Loading…
Reference in a new issue