Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/workers/gitlab/github_import/stage/import_collaborators_worker_spec.rb')
-rw-r--r--spec/workers/gitlab/github_import/stage/import_collaborators_worker_spec.rb20
1 files changed, 2 insertions, 18 deletions
diff --git a/spec/workers/gitlab/github_import/stage/import_collaborators_worker_spec.rb b/spec/workers/gitlab/github_import/stage/import_collaborators_worker_spec.rb
index 808f6e827ed..fc38adb5447 100644
--- a/spec/workers/gitlab/github_import/stage/import_collaborators_worker_spec.rb
+++ b/spec/workers/gitlab/github_import/stage/import_collaborators_worker_spec.rb
@@ -12,6 +12,8 @@ RSpec.describe Gitlab::GithubImport::Stage::ImportCollaboratorsWorker, feature_c
let(:importer) { instance_double(Gitlab::GithubImport::Importer::CollaboratorsImporter) }
let(:client) { instance_double(Gitlab::GithubImport::Client) }
+ it_behaves_like Gitlab::GithubImport::StageMethods
+
describe '#import' do
let(:push_rights_granted) { true }
@@ -68,23 +70,5 @@ RSpec.describe Gitlab::GithubImport::Stage::ImportCollaboratorsWorker, feature_c
worker.import(client, project)
end
end
-
- it 'raises an error' do
- exception = StandardError.new('_some_error_')
-
- expect_next_instance_of(Gitlab::GithubImport::Importer::CollaboratorsImporter) do |importer|
- expect(importer).to receive(:execute).and_raise(exception)
- end
- expect(Gitlab::Import::ImportFailureService).to receive(:track)
- .with(
- project_id: project.id,
- exception: exception,
- error_source: described_class.name,
- fail_import: true,
- metrics: true
- ).and_call_original
-
- expect { worker.import(client, project) }.to raise_error(StandardError)
- end
end
end