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/services/projects/import_export/export_service_spec.rb')
-rw-r--r--spec/services/projects/import_export/export_service_spec.rb24
1 files changed, 3 insertions, 21 deletions
diff --git a/spec/services/projects/import_export/export_service_spec.rb b/spec/services/projects/import_export/export_service_spec.rb
index 1315ae26322..e00507d1827 100644
--- a/spec/services/projects/import_export/export_service_spec.rb
+++ b/spec/services/projects/import_export/export_service_spec.rb
@@ -26,28 +26,10 @@ describe Projects::ImportExport::ExportService do
service.execute
end
- context 'when :streaming_serializer feature is enabled' do
- before do
- stub_feature_flags(streaming_serializer: true)
- end
-
- it 'saves the models' do
- expect(Gitlab::ImportExport::Project::TreeSaver).to receive(:new).and_call_original
-
- service.execute
- end
- end
+ it 'saves the models' do
+ expect(Gitlab::ImportExport::Project::TreeSaver).to receive(:new).and_call_original
- context 'when :streaming_serializer feature is disabled' do
- before do
- stub_feature_flags(streaming_serializer: false)
- end
-
- it 'saves the models' do
- expect(Gitlab::ImportExport::Project::LegacyTreeSaver).to receive(:new).and_call_original
-
- service.execute
- end
+ service.execute
end
it 'saves the uploads' do