debian-mirror-gitlab/spec/lib/gitlab/ci_access_spec.rb
2020-08-09 17:44:08 +05:30

18 lines
448 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Gitlab::CiAccess do
let(:access) { described_class.new }
describe '#can_do_action?' do
context 'when action is :build_download_code' do
it { expect(access.can_do_action?(:build_download_code)).to be_truthy }
end
context 'when action is not :build_download_code' do
it { expect(access.can_do_action?(:download_code)).to be_falsey }
end
end
end