in spec/upload_stubs.rb [117:126]
def stub_create_mapping_upload(status, version, build, file_name = "mapping.txt")
stub_request(:post, "https://api.appcenter.ms/v0.1/apps/owner/app/symbol_uploads")
.with(body: "{\"symbol_type\":\"AndroidProguard\",\"file_name\":\"#{file_name}\",\"build\":\"#{build}\",\"version\":\"#{version}\"}")
.to_return(
status: status,
body: "",
headers: { 'Content-Type' => 'application/json' }
)
end