2019-12-04 20:38:33 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-24 18:46:33 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Gitlab::UploadsTransfer do
|
2017-08-17 22:00:37 +05:30
|
|
|
it 'leaves avatar uploads where they are' do
|
2017-09-10 17:25:29 +05:30
|
|
|
project_with_avatar = create(:project, :with_avatar)
|
2015-10-24 18:46:33 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
described_class.new.rename_namespace('project', 'project-renamed')
|
2015-10-24 18:46:33 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(File.exist?(project_with_avatar.avatar.path)).to be_truthy
|
2015-10-24 18:46:33 +05:30
|
|
|
end
|
|
|
|
end
|