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/lib/bulk_imports/projects/pipelines/project_pipeline_spec.rb')
-rw-r--r--spec/lib/bulk_imports/projects/pipelines/project_pipeline_spec.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/spec/lib/bulk_imports/projects/pipelines/project_pipeline_spec.rb b/spec/lib/bulk_imports/projects/pipelines/project_pipeline_spec.rb
index 82b8bb3958a..8f514a20ae6 100644
--- a/spec/lib/bulk_imports/projects/pipelines/project_pipeline_spec.rb
+++ b/spec/lib/bulk_imports/projects/pipelines/project_pipeline_spec.rb
@@ -3,7 +3,7 @@
require 'spec_helper'
RSpec.describe BulkImports::Projects::Pipelines::ProjectPipeline, feature_category: :importers do
- describe '#run' do
+ describe '#run', :clean_gitlab_redis_cache do
let_it_be(:user) { create(:user) }
let_it_be(:group) { create(:group) }
let_it_be(:bulk_import) { create(:bulk_import, user: user) }
@@ -50,6 +50,11 @@ RSpec.describe BulkImports::Projects::Pipelines::ProjectPipeline, feature_catego
expect(imported_project.visibility).to eq(project_data['visibility'])
expect(imported_project.created_at).to eq(project_data['created_at'])
end
+
+ it 'skips duplicate projects on pipeline re-run' do
+ expect { project_pipeline.run }.to change { Project.count }.by(1)
+ expect { project_pipeline.run }.not_to change { Project.count }
+ end
end
describe 'pipeline parts' do