summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/uploads_transfer_spec.rb
blob: 16560fc8f12c37b45a4801e64b45994fc9ff3822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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