12 lines
205 B
Ruby
12 lines
205 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'spec_helper'
|
||
|
|
||
|
describe CommitUserMention do
|
||
|
describe 'associations' do
|
||
|
it { is_expected.to belong_to(:note) }
|
||
|
end
|
||
|
|
||
|
it_behaves_like 'has user mentions'
|
||
|
end
|