in spec/upload_stubs.rb [107:116]
def stub_create_dsym_upload(status)
stub_request(:post, "https://api.appcenter.ms/v0.1/apps/owner/app/symbol_uploads")
.with(body: "{\"symbol_type\":\"Apple\"}")
.to_return(
status: status,
body: "{\"symbol_upload_id\":\"symbol_upload_id\",\"upload_url\":\"https://upload_dsym.com\"}",
headers: { 'Content-Type' => 'application/json' }
)
end