summaryrefslogtreecommitdiff
path: root/spec/support/shared_contexts/lib/gitlab/git_access_shared_examples.rb
blob: 837c1c37aa3db314d1172322c054cfb73db0ac8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

RSpec.shared_examples 'forbidden git access' do
  let(:message) { /You can't/ }

  it 'prevents access' do
    expect { subject }.to raise_error(Gitlab::GitAccess::ForbiddenError, message)
  end
end

RSpec.shared_examples 'not-found git access' do
  let(:message) { /not found/ }

  it 'prevents access' do
    expect { subject }.to raise_error(Gitlab::GitAccess::NotFoundError, message)
  end
end