summaryrefslogtreecommitdiff
path: root/spec/models/hooks/project_hook_spec.rb
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-01-30 15:40:04 -0500
committerRobert Speicher <rspeicher@gmail.com>2015-01-30 15:51:10 -0500
commitab6f7164e03139889c09a6a207e9df3481e57b3b (patch)
treec1c107612a9db89bbdc4f10c222bfcb4f5b44119 /spec/models/hooks/project_hook_spec.rb
parentc47328948b5fff218c68279260a57ab6b03e7423 (diff)
downloadgitlab-ce-ab6f7164e03139889c09a6a207e9df3481e57b3b.tar.gz
Make the structure of spec/models match app/models
Diffstat (limited to 'spec/models/hooks/project_hook_spec.rb')
-rw-r--r--spec/models/hooks/project_hook_spec.rb36
1 files changed, 36 insertions, 0 deletions
diff --git a/spec/models/hooks/project_hook_spec.rb b/spec/models/hooks/project_hook_spec.rb
new file mode 100644
index 00000000000..4e0d50d7f3f
--- /dev/null
+++ b/spec/models/hooks/project_hook_spec.rb
@@ -0,0 +1,36 @@
+# == Schema Information
+#
+# Table name: web_hooks
+#
+# id :integer not null, primary key
+# url :string(255)
+# project_id :integer
+# created_at :datetime
+# updated_at :datetime
+# type :string(255) default("ProjectHook")
+# service_id :integer
+# push_events :boolean default(TRUE), not null
+# issues_events :boolean default(FALSE), not null
+# merge_requests_events :boolean default(FALSE), not null
+# tag_push_events :boolean default(FALSE)
+#
+
+require 'spec_helper'
+
+describe ProjectHook do
+ describe '.push_hooks' do
+ it 'should return hooks for push events only' do
+ hook = create(:project_hook, push_events: true)
+ hook2 = create(:project_hook, push_events: false)
+ expect(ProjectHook.push_hooks).to eq([hook])
+ end
+ end
+
+ describe '.tag_push_hooks' do
+ it 'should return hooks for tag push events only' do
+ hook = create(:project_hook, tag_push_events: true)
+ hook2 = create(:project_hook, tag_push_events: false)
+ expect(ProjectHook.tag_push_hooks).to eq([hook])
+ end
+ end
+end