summaryrefslogtreecommitdiff
path: root/spec/models/group_label_spec.rb
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-09-19 12:04:38 -0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-10-19 14:57:14 -0200
commitd820c090ec85f8118e4cea75bd63d800e812ea25 (patch)
tree63ab9b40c13f1a44add19cad9d40f4c58f7f31c8 /spec/models/group_label_spec.rb
parentd927336403a92d340d7e5b2d2328c5a0e029d666 (diff)
downloadgitlab-ce-d820c090ec85f8118e4cea75bd63d800e812ea25.tar.gz
Add GroupLabel model
Diffstat (limited to 'spec/models/group_label_spec.rb')
-rw-r--r--spec/models/group_label_spec.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/models/group_label_spec.rb b/spec/models/group_label_spec.rb
new file mode 100644
index 00000000000..a82d23bcc0b
--- /dev/null
+++ b/spec/models/group_label_spec.rb
@@ -0,0 +1,11 @@
+require 'spec_helper'
+
+describe GroupLabel, models: true do
+ describe 'relationships' do
+ it { is_expected.to belong_to(:group) }
+ end
+
+ describe 'validations' do
+ it { is_expected.to validate_presence_of(:group) }
+ end
+end