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

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

require 'fast_spec_helper'
require 'rubocop'
require 'rubocop/rspec/support'
require_relative '../../../rubocop/cop/group_public_or_visible_to_user'

RSpec.describe RuboCop::Cop::GroupPublicOrVisibleToUser do
  include CopHelper

  subject(:cop) { described_class.new }

  it 'flags the use of Group.public_or_visible_to_user with a constant receiver' do
    inspect_source('Group.public_or_visible_to_user')

    expect(cop.offenses.size).to eq(1)
  end

  it 'does not flat the use of public_or_visible_to_user with a constant that is not Group' do
    inspect_source('Project.public_or_visible_to_user')

    expect(cop.offenses.size).to eq(0)
  end

  it 'does not flag the use of Group.public_or_visible_to_user with a send receiver' do
    inspect_source('foo.public_or_visible_to_user')

    expect(cop.offenses.size).to eq(0)
  end
end