in spec/fetch_version_number_stubs.rb [32:37]
def stub_get_releases_forbidden(status)
forbidden_json = JSON.parse(File.read("spec/fixtures/releases/forbidden.json"))
stub_request(:get, "https://api.appcenter.ms/v0.1/apps/owner-name/App-Name/releases")
.to_return(status: status, body: forbidden_json.to_json, headers: { 'Content-Type' => 'application/json' })
end