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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2019-12-10 18:07:52 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2019-12-10 18:07:52 +0300
commit27d91a629918e417a9e87825e838209b9ace79c1 (patch)
treee066c3fc84e3011641e662252810cb2c240edb90 /spec/models/user_mentions
parent5e11c9b77cb1b2b77ee29359047b55807afe255d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/models/user_mentions')
-rw-r--r--spec/models/user_mentions/commit_user_mention_spec.rb11
-rw-r--r--spec/models/user_mentions/issue_user_mention_spec.rb12
-rw-r--r--spec/models/user_mentions/merge_request_user_mention_spec.rb12
-rw-r--r--spec/models/user_mentions/snippet_user_mention_spec.rb12
4 files changed, 47 insertions, 0 deletions
diff --git a/spec/models/user_mentions/commit_user_mention_spec.rb b/spec/models/user_mentions/commit_user_mention_spec.rb
new file mode 100644
index 00000000000..ebad3902d6b
--- /dev/null
+++ b/spec/models/user_mentions/commit_user_mention_spec.rb
@@ -0,0 +1,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
diff --git a/spec/models/user_mentions/issue_user_mention_spec.rb b/spec/models/user_mentions/issue_user_mention_spec.rb
new file mode 100644
index 00000000000..ac29f3084b4
--- /dev/null
+++ b/spec/models/user_mentions/issue_user_mention_spec.rb
@@ -0,0 +1,12 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+describe IssueUserMention do
+ describe 'associations' do
+ it { is_expected.to belong_to(:issue) }
+ it { is_expected.to belong_to(:note) }
+ end
+
+ it_behaves_like 'has user mentions'
+end
diff --git a/spec/models/user_mentions/merge_request_user_mention_spec.rb b/spec/models/user_mentions/merge_request_user_mention_spec.rb
new file mode 100644
index 00000000000..c5c7cebfaa5
--- /dev/null
+++ b/spec/models/user_mentions/merge_request_user_mention_spec.rb
@@ -0,0 +1,12 @@
+# 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
diff --git a/spec/models/user_mentions/snippet_user_mention_spec.rb b/spec/models/user_mentions/snippet_user_mention_spec.rb
new file mode 100644
index 00000000000..0e34a2dd5a1
--- /dev/null
+++ b/spec/models/user_mentions/snippet_user_mention_spec.rb
@@ -0,0 +1,12 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+describe SnippetUserMention do
+ describe 'associations' do
+ it { is_expected.to belong_to(:snippet) }
+ it { is_expected.to belong_to(:note) }
+ end
+
+ it_behaves_like 'has user mentions'
+end