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

test_hook_service_spec.rb « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76af5bf7b88c9071e38bcad0f49d26b6bcdb40ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'spec_helper'

describe TestHookService do
  let (:user)    { create :user }
  let (:project) { create :project }
  let (:hook)    { create :project_hook, project: project }

  describe :execute do
    it "should execute successfully" do
      stub_request(:post, hook.url).to_return(status: 200)
      TestHookService.new.execute(hook, user).should be_true
    end
  end
end