debian-mirror-gitlab/spec/models/hooks/project_hook_spec.rb

42 lines
1.3 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
# == 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-09-11 14:41:01 +05:30
# note_events :boolean default(FALSE), not null
2014-09-02 18:07:02 +05:30
#
require 'spec_helper'
2015-12-23 02:04:40 +05:30
describe ProjectHook, models: true do
2016-06-02 11:05:42 +05:30
describe "Associations" do
it { is_expected.to belong_to :project }
end
2014-09-02 18:07:02 +05:30
describe '.push_hooks' do
it 'should return hooks for push events only' do
hook = create(:project_hook, push_events: true)
2015-10-24 18:46:33 +05:30
create(:project_hook, push_events: false)
2014-09-02 18:07:02 +05:30
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-24 18:46:33 +05:30
create(:project_hook, tag_push_events: false)
2014-09-02 18:07:02 +05:30
expect(ProjectHook.tag_push_hooks).to eq([hook])
end
end
end