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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-29 18:10:15 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-29 18:10:15 +0400
commit03654a6abf47c88b8b980a6707874ff78080d2fe (patch)
treec5ba2dba7f0685dd6c5e656a50f70400a746b23e /spec/models/label_link_spec.rb
parent535feb08ce90352c89799df5e3e70a10e53ee10d (diff)
Label and LabelLink models for implementing own GitLab labels
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'spec/models/label_link_spec.rb')
-rw-r--r--spec/models/label_link_spec.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/spec/models/label_link_spec.rb b/spec/models/label_link_spec.rb
new file mode 100644
index 00000000000..078e61a7d62
--- /dev/null
+++ b/spec/models/label_link_spec.rb
@@ -0,0 +1,9 @@
+require 'spec_helper'
+
+describe LabelLink do
+ let(:label) { create(:label_link) }
+ it { label.should be_valid }
+
+ it { should belong_to(:label) }
+ it { should belong_to(:target) }
+end