30 lines
		
	
	
		
			724 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			724 B
		
	
	
	
		
			Ruby
		
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require 'spec_helper'
 | |
| 
 | |
| RSpec.describe Gitlab::Allowable do
 | |
|   subject do
 | |
|     Class.new.include(described_class).new
 | |
|   end
 | |
| 
 | |
|   describe '#can?' do
 | |
|     let(:user) { create(:user) }
 | |
| 
 | |
|     context 'when user is allowed to do something' do
 | |
|       let(:project) { create(:project, :public) }
 | |
| 
 | |
|       it 'reports correct ability to perform action' do
 | |
|         expect(subject.can?(user, :read_project, project)).to be true
 | |
|       end
 | |
|     end
 | |
| 
 | |
|     context 'when user is not allowed to do something' do
 | |
|       let(:project) { create(:project, :private) }
 | |
| 
 | |
|       it 'reports correct ability to perform action' do
 | |
|         expect(subject.can?(user, :read_project, project)).to be false
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |