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:
authorZ.J. van de Weg <git@zjvandeweg.nl>2017-02-02 17:04:02 +0300
committerZ.J. van de Weg <git@zjvandeweg.nl>2017-02-16 11:17:40 +0300
commit297dc70158f905fef4557d1ee6510bcf459a08a9 (patch)
treeb35fa5508d947f1d19e644ac9b1149145f9bb45a /spec/models/chat_team_spec.rb
parente90ec73f651ca6153a72437d4dd01f60c38839da (diff)
Create MM team for GitLab group
Diffstat (limited to 'spec/models/chat_team_spec.rb')
-rw-r--r--spec/models/chat_team_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/models/chat_team_spec.rb b/spec/models/chat_team_spec.rb
new file mode 100644
index 00000000000..37a22f5cd6d
--- /dev/null
+++ b/spec/models/chat_team_spec.rb
@@ -0,0 +1,10 @@
+require 'spec_helper'
+
+describe ChatTeam, type: :model do
+ # Associations
+ it { is_expected.to belong_to(:group) }
+
+ # Fields
+ it { is_expected.to respond_to(:name) }
+ it { is_expected.to respond_to(:team_id) }
+end