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

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

require 'spec_helper'

RSpec.describe Gitlab::BuildAccess do
  let(:user) { create(:user) }
  let(:project) { create(:project) }

  describe '#can_do_action' do
    subject { described_class.new(user, container: project).can_do_action?(:download_code) }

    context 'when the user can do an action on the project but cannot access git' do
      before do
        user.block!
        project.add_developer(user)
      end

      it { is_expected.to be(true) }
    end

    context 'when the user cannot do an action on the project' do
      it { is_expected.to be(false) }
    end
  end
end