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

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

require 'fast_spec_helper'
require_relative '../../../../rubocop/cop/gitlab/avoid_uploaded_file_from_params'

RSpec.describe RuboCop::Cop::Gitlab::AvoidUploadedFileFromParams do
  subject(:cop) { described_class.new }

  context 'when using UploadedFile.from_params' do
    it 'flags its call' do
      expect_offense(<<~SOURCE)
        UploadedFile.from_params(params)
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Use the `UploadedFile` set by `multipart.rb` instead of calling [...]
      SOURCE
    end
  end
end