summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/models/note_access_check_shared_examples.rb
blob: 44edafe9091841f8a3b46ef34daa851b35a93948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

RSpec.shared_examples 'users with note access' do
  it 'returns true' do
    users.each do |user|
      expect(note.system_note_with_references_visible_for?(user)).to be_truthy
      expect(note.readable_by?(user)).to be_truthy
    end
  end
end

RSpec.shared_examples 'users without note access' do
  it 'returns false' do
    users.each do |user|
      expect(note.system_note_with_references_visible_for?(user)).to be_falsy
      expect(note.readable_by?(user)).to be_falsy
    end
  end
end