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

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

require 'rubocop_spec_helper'

require 'rubocop'
require_relative '../../../rubocop/cop/user_admin'

RSpec.describe RuboCop::Cop::UserAdmin do
  it 'flags a method call' do
    expect_offense(<<~SOURCE)
      user.admin?
           ^^^^^^ #{described_class::MSG}
    SOURCE
  end

  it 'flags a method call with safe operator' do
    expect_offense(<<~SOURCE)
      user&.admin?
            ^^^^^^ #{described_class::MSG}
    SOURCE
  end
end