Backend Refactoring

This commit is contained in:
Dmitriy Zaporozhets 2012-07-31 08:32:49 +03:00
parent 69e41250d1
commit 5926bbac12
11 changed files with 151 additions and 78 deletions

View file

@ -0,0 +1,8 @@
class TestHookContext < BaseContext
def execute
hook = project.hooks.find(params[:id])
commits = project.commits(project.default_branch, nil, 3)
data = project.post_receive_data(commits.last.id, commits.first.id, "refs/heads/#{project.default_branch}", current_user)
hook.execute(data)
end
end