Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1140)

Side by Side Diff: third_party/google_appengine_cloudstorage/cloudstorage/test_utils.py

Issue 139303023: add GCS support to docs server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bumped versions Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2013 Google Inc. All Rights Reserved.
2
3 """Utils for testing."""
4
5
6 class MockUrlFetchResult(object):
7
8 def __init__(self, status, headers, body):
9 self.status_code = status
10 self.headers = headers
11 self.content = body
12 self.content_was_truncated = False
13 self.final_url = None
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698