debian-mirror-gitlab/spec/models/user_mentions/merge_request_user_mention_spec.rb
2020-01-01 13:55:28 +05:30

13 lines
263 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
describe MergeRequestUserMention do
describe 'associations' do
it { is_expected.to belong_to(:merge_request) }
it { is_expected.to belong_to(:note) }
end
it_behaves_like 'has user mentions'
end