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

design_user_mention_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 944a82c5edfa063402ee2c39bdebc5c5e7f58af4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require 'spec_helper'

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

  it_behaves_like 'has user mentions'
end