2014-04-09 08:05:03 -04:00
|
|
|
# == 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)
|
2015-05-16 02:33:31 -04:00
|
|
|
# note_events :boolean default(FALSE), not null
|
2014-04-09 08:05:03 -04:00
|
|
|
#
|
|
|
|
|
2014-03-05 14:44:01 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-12-09 04:50:51 -05:00
|
|
|
describe ProjectHook, models: true do
|
2016-02-22 07:55:36 -05:00
|
|
|
describe "Associations" do
|
|
|
|
it { is_expected.to belong_to :project }
|
|
|
|
end
|
|
|
|
|
2014-03-05 14:44:01 -05:00
|
|
|
describe '.push_hooks' do
|
|
|
|
it 'should return hooks for push events only' do
|
|
|
|
hook = create(:project_hook, push_events: true)
|
2015-10-03 02:48:54 -04:00
|
|
|
create(:project_hook, push_events: false)
|
2014-03-05 14:44:01 -05:00
|
|
|
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)
|
2015-10-03 02:48:54 -04:00
|
|
|
create(:project_hook, tag_push_events: false)
|
2014-03-05 14:44:01 -05:00
|
|
|
expect(ProjectHook.tag_push_hooks).to eq([hook])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|