Skip to content
Snippets Groups Projects
Commit bd948549 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

fix tests

parent e0b5e260
No related branches found
No related tags found
1 merge request!2940Expanding repos and hooks paths in settings
Loading
Loading
@@ -38,11 +38,14 @@ describe Project, "Hooks" do
@project_hook = create(:project_hook)
@project_hook_2 = create(:project_hook)
project.hooks << [@project_hook, @project_hook_2]
stub_request(:post, @project_hook.url)
stub_request(:post, @project_hook_2.url)
end
 
it "executes multiple web hook" do
@project_hook.should_receive(:execute).once
@project_hook_2.should_receive(:execute).once
@project_hook.should_receive(:async_execute).once
@project_hook_2.should_receive(:async_execute).once
 
project.trigger_post_receive('oldrev', 'newrev', 'refs/heads/master', @user)
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment