8c42a0eac0
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
13 lines
347 B
Ruby
13 lines
347 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
describe Gitlab::UploadsTransfer do
|
|
it 'leaves avatar uploads where they are' do
|
|
project_with_avatar = create(:project, :with_avatar)
|
|
|
|
described_class.new.rename_namespace('project', 'project-renamed')
|
|
|
|
expect(File.exist?(project_with_avatar.avatar.path)).to be_truthy
|
|
end
|
|
end
|