summaryrefslogtreecommitdiff
path: root/spec/models/user_mentions/snippet_user_mention_spec.rb
blob: 0762e731a53ba673fa5785bad2b2cc1db12e61bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe SnippetUserMention do
  describe 'associations' do
    it { is_expected.to belong_to(:snippet) }
    it { is_expected.to belong_to(:note) }
  end

  it_behaves_like 'has user mentions'
end