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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-12-01 12:10:25 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-12-01 12:10:25 +0300
commit7bc1ee0bcb9cefaf788aa0b93383b7347e9010b0 (patch)
tree4cd125d7c55603ae87b2ca93b8ef89d71c2c5ef8 /spec/models/bulk_imports/entity_spec.rb
parent9b646e9297a1d9bcc7397c76010011f56df1579d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/models/bulk_imports/entity_spec.rb')
-rw-r--r--spec/models/bulk_imports/entity_spec.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/models/bulk_imports/entity_spec.rb b/spec/models/bulk_imports/entity_spec.rb
index 1be564904c7..90cb0185b9c 100644
--- a/spec/models/bulk_imports/entity_spec.rb
+++ b/spec/models/bulk_imports/entity_spec.rb
@@ -282,4 +282,20 @@ RSpec.describe BulkImports::Entity, type: :model do
expect(project_entity.group?).to eq(false)
end
end
+
+ describe '#base_resource_url_path' do
+ it 'returns base entity url path' do
+ entity = build(:bulk_import_entity)
+
+ expect(entity.base_resource_url_path).to eq("/groups/#{entity.encoded_source_full_path}")
+ end
+ end
+
+ describe '#wiki_url_path' do
+ it 'returns entity wiki url path' do
+ entity = build(:bulk_import_entity)
+
+ expect(entity.wikis_url_path).to eq("/groups/#{entity.encoded_source_full_path}/wikis")
+ end
+ end
end