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

issuable_current_user_properties_shared_examples.rb « serializers « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c285bfba91c750c213d1a211b6ea51789aa4c19 (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

RSpec.shared_examples 'issuable entity current_user properties' do
  describe 'can_create_confidential_note' do
    subject do
      described_class.new(resource, request: request)
        .as_json[:current_user][:can_create_confidential_note]
    end

    context 'when user can create confidential notes' do
      before do
        resource.resource_parent.add_reporter(user)
      end

      it { is_expected.to be(true) }
    end

    context 'when user cannot create confidential notes' do
      it { is_expected.to eq(false) }
    end
  end
end