Welcome to mirror list, hosted at ThFree Co, Russian Federation.

renameable_upload.rb « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7f0018160583c1088f8ae274e7f9290ce94c427 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class RenameableUpload < SimpleDelegator
  attr_accessor :original_filename

  # Get a fixture file with a new unique name, and the same extension
  def self.unique_file(name)
    upload = new(fixture_file_upload("spec/fixtures/#{name}"))
    ext = File.extname(name)
    new_name = File.basename(FactoryBot.generate(:filename), '.*')
    upload.original_filename = new_name + ext

    upload
  end
end