13 lines
252 B
Ruby
13 lines
252 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'spec_helper'
|
||
|
|
||
|
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
|