mirror of
				https://github.com/lunaisnotaboy/mastodon.git
				synced 2025-10-30 19:45:49 +00:00 
			
		
		
		
	
		
			
	
	
		
			25 lines
		
	
	
		
			532 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
		
		
			
		
	
	
			25 lines
		
	
	
		
			532 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
|  | # frozen_string_literal: true | ||
|  | 
 | ||
|  | require 'rails_helper' | ||
|  | require 'pundit/rspec' | ||
|  | 
 | ||
|  | RSpec.describe SubscriptionPolicy do | ||
|  |   let(:subject) { described_class } | ||
|  |   let(:admin)   { Fabricate(:user, admin: true).account } | ||
|  |   let(:john)    { Fabricate(:user).account } | ||
|  | 
 | ||
|  |   permissions :index? do | ||
|  |     context 'admin?' do | ||
|  |       it 'permits' do | ||
|  |         expect(subject).to permit(admin, Subscription) | ||
|  |       end | ||
|  |     end | ||
|  | 
 | ||
|  |     context '!admin?' do | ||
|  |       it 'denies' do | ||
|  |         expect(subject).to_not permit(john, Subscription) | ||
|  |       end | ||
|  |     end | ||
|  |   end | ||
|  | end |