travis-api/spec/unit/endpoint/jobs_spec.rb
2016-06-19 14:35:54 +02:00

15 lines
706 B
Ruby

describe Travis::Api::App::Endpoint::Jobs, set_app: true do
let(:job) { Factory(:test) }
let(:provider) { Factory(:annotation_provider) }
it "GET /jobs/:id/annotations" do
get("/jobs/#{job.id}/annotations", {}, "HTTP_ACCEPT" => "application/vnd.travis-ci.2+json, */*; q=0.01").should be_ok
end
it "POST /jobs/:id/annotations" do
Travis::Services::UpdateAnnotation.any_instance.stubs(:annotations_enabled?).returns(true)
response = post("/jobs/#{job.id}/annotations", { "username" => provider.api_username, "key" => provider.api_key, "status" => "passed", "description" => "Foobar" }, "HTTP_ACCEPT" => "application/vnd.travis-ci.2+json, */*; q=0.01").should be_successful
end
end