The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
559 B

  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. require 'pundit/rspec'
  4. RSpec.describe DomainBlockPolicy do
  5. let(:subject) { described_class }
  6. let(:admin) { Fabricate(:user, admin: true).account }
  7. let(:john) { Fabricate(:user).account }
  8. permissions :index?, :show?, :create?, :destroy? do
  9. context 'admin' do
  10. it 'permits' do
  11. expect(subject).to permit(admin, DomainBlock)
  12. end
  13. end
  14. context 'not admin' do
  15. it 'denies' do
  16. expect(subject).to_not permit(john, DomainBlock)
  17. end
  18. end
  19. end
  20. end