mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
10 lines
297 B
Ruby
10 lines
297 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require "rails_helper"
|
||
|
|
||
|
RSpec.describe User do
|
||
|
it { is_expected.to have_many(:user_chat_channel_memberships).dependent(:destroy) }
|
||
|
it { is_expected.to have_many(:chat_message_reactions).dependent(:destroy) }
|
||
|
it { is_expected.to have_many(:chat_mentions) }
|
||
|
end
|