Welcome to mirror list, hosted at ThFree Co, Russian Federation.

commit_user_mention_spec.rb « user_mentions « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ebad3902d6b773672eabb99890616d7e734c2b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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