Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_hook_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7bd7c431bcd8d206839ba6f5d666bf5ec8b78a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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