14 lines
374 B
Ruby
14 lines
374 B
Ruby
|
require 'rake_helper'
|
||
|
|
||
|
describe 'gitlab:ldap:rename_provider rake task' do
|
||
|
it 'completes without error' do
|
||
|
Rake.application.rake_require 'tasks/gitlab/ldap'
|
||
|
stub_warn_user_is_not_gitlab
|
||
|
ENV['force'] = 'yes'
|
||
|
|
||
|
create(:identity) # Necessary to prevent `exit 1` from the task.
|
||
|
|
||
|
run_rake_task('gitlab:ldap:rename_provider', 'ldapmain', 'ldapfoo')
|
||
|
end
|
||
|
end
|