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

organization_policy_spec.rb « organizations « policies « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52d5a41aa7ffb669efee5403a7215bcddede6943 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Organizations::OrganizationPolicy, feature_category: :cell do
  let_it_be(:organization) { create(:organization) }

  subject(:policy) { described_class.new(current_user, organization) }

  context 'when the user is an admin' do
    let_it_be(:current_user) { create(:user, :admin) }

    context 'when admin mode is enabled', :enable_admin_mode do
      it { is_expected.to be_allowed(:admin_organization) }
    end

    context 'when admin mode is disabled' do
      it { is_expected.to be_disallowed(:admin_organization) }
    end
  end

  context 'when the user is not an admin' do
    let_it_be(:current_user) { create(:user) }

    it { is_expected.to be_disallowed(:admin_organization) }
  end
end