diff options
author | Valery Sizov <vsv2711@gmail.com> | 2015-04-20 15:39:08 +0300 |
---|---|---|
committer | Valery Sizov <vsv2711@gmail.com> | 2015-04-20 15:39:08 +0300 |
commit | 9fa962804009a00173a54667973b806debc89770 (patch) | |
tree | 295fd521fdd3b0d8a6e55847a6908ef1d1ef2c69 /spec/requests/api/builds_spec.rb | |
parent | 0e4c8294a236c09e8050040a5170c51db907cfb8 (diff) | |
download | gitlab-ci-remove_deprecated_code.tar.gz |
remove deprecated coderemove_deprecated_code
Diffstat (limited to 'spec/requests/api/builds_spec.rb')
-rw-r--r-- | spec/requests/api/builds_spec.rb | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/spec/requests/api/builds_spec.rb b/spec/requests/api/builds_spec.rb index fd0e0cd..f69aac8 100644 --- a/spec/requests/api/builds_spec.rb +++ b/spec/requests/api/builds_spec.rb @@ -69,40 +69,4 @@ describe API::API do end end end - - describe "POST /builds" do - let(:data) { - { - "before" => "95790bf891e76fee5e1747ab589903a6a1f80f22", - "after" => "da1560886d4f094c3e6c9ef40349f7d38b5d27d7", - "ref" => "refs/heads/master", - "commits" => [ - { - "id" => "b6568db1bc1dcd7f8b4d5a946b0b91f9dacd7327", - "message" => "Update Catalan translation to e38cb41.", - "timestamp" => "2011-12-12T14:27:31+02:00", - "url" => "http://localhost/diaspora/commits/b6568db1bc1dcd7f8b4d5a946b0b91f9dacd7327", - "author" => { - "name" => "Jordi Mallach", - "email" => "jordi@softcatala.org", - } - } - ] - } - } - - it "should create a build" do - post api("/builds"), project_id: project.id, data: data, project_token: project.token - - response.status.should == 201 - json_response['sha'].should == "da1560886d4f094c3e6c9ef40349f7d38b5d27d7" - end - - it "should return 400 error if no data passed" do - post api("/builds"), project_id: project.id, project_token: project.token - - response.status.should == 400 - json_response['message'].should == "400 (Bad request) \"data\" not given" - end - end end |