Sha256: 8417d7f80f7653aff008d80a3e4fa6aaa3988d4962a16e8e52c17e5e1026e4ea
Contents?: true
Size: 1.79 KB
Versions: 1
Compression:
Stored size: 1.79 KB
Contents
require 'spec_helper' describe Gitlab::Client do it { should respond_to :system_hooks } it { should respond_to :add_system_hook } it { should respond_to :system_hook } it { should respond_to :delete_system_hook } describe ".hooks" do before do stub_get("/hooks", "system_hooks") @hooks = Gitlab.hooks end it "should get the correct resource" do expect(a_get("/hooks")).to have_been_made end it "should return a paginated response of system hooks" do expect(@hooks).to be_a Gitlab::PaginatedResponse expect(@hooks.first.url).to eq("http://example.com/hook") end end describe ".add_hook" do before do stub_post("/hooks", "system_hook") @hook = Gitlab.add_hook("http://example.com/hook", token: 'secret-token') end it "should get the correct resource" do expect(a_post("/hooks").with(body: hash_including(token: 'secret-token'))).to have_been_made end it "should return information about a added system hook" do expect(@hook.url).to eq("http://example.com/hook") end end describe ".hook" do before do stub_get("/hooks/3", "system_hook") @hook = Gitlab.hook(3) end it "should get the correct resource" do expect(a_get("/hooks/3")).to have_been_made end it "should return information about a added system hook" do expect(@hook.url).to eq("http://example.com/hook") end end describe ".delete_hook" do before do stub_delete("/hooks/3", "system_hook") @hook = Gitlab.delete_hook(3) end it "should get the correct resource" do expect(a_delete("/hooks/3")).to have_been_made end it "should return information about a deleted system hook" do expect(@hook.url).to eq("http://example.com/hook") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gitlab-4.2.0 | spec/gitlab/client/system_hooks_spec.rb |