diff options
author | Tiago Botelho <tiagonbotelho@hotmail.com> | 2018-01-26 14:28:08 +0000 |
---|---|---|
committer | Tiago Botelho <tiagonbotelho@hotmail.com> | 2018-02-06 13:35:35 +0000 |
commit | dc229c076cdc0ef6e7f3f74f6e462c22880ff08c (patch) | |
tree | ec2c979bf3dcb0af71661a7903afd02b2e6f6114 /spec/requests/git_http_spec.rb | |
parent | e42a548f1dac02577d0c1731fef508dab68c45a5 (diff) | |
download | gitlab-ce-dc229c076cdc0ef6e7f3f74f6e462c22880ff08c.tar.gz |
Abstracts ProjectMoved and ProjectCreated into a BaseProject
Diffstat (limited to 'spec/requests/git_http_spec.rb')
-rw-r--r-- | spec/requests/git_http_spec.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/requests/git_http_spec.rb b/spec/requests/git_http_spec.rb index c73db257b05..8be94459c2e 100644 --- a/spec/requests/git_http_spec.rb +++ b/spec/requests/git_http_spec.rb @@ -134,12 +134,12 @@ describe 'Git HTTP requests' do end.to change { user.projects.count }.by(1) end - it 'rejects upload with 404 Not Found when project is invalid' do + it 'rejects push with 422 Unprocessable Entity when project is invalid' do path = "#{user.namespace.path}/new.git" - upload(path, user: user.username, password: user.password) do |response| - expect(response).to have_gitlab_http_status(:not_found) - end + push_get(path, user: user.username, password: user.password) + + expect(response).to have_gitlab_http_status(:unprocessable_entity) end end end |