summaryrefslogtreecommitdiff
path: root/spec/models/design_user_mention_spec.rb
blob: 03c77c73c8d3ac5041f9e3e2c528de5efa6aee70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require 'spec_helper'

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