1.0beta3 release
diff --git a/docs/apiclient.http.html b/docs/apiclient.http.html
index f2d9b11..0cbc0a6 100644
--- a/docs/apiclient.http.html
+++ b/docs/apiclient.http.html
@@ -8,7 +8,7 @@
<td valign=bottom> <br>
<font color="#ffffff" face="helvetica, arial"> <br><big><big><strong><a href="apiclient.html"><font color="#ffffff">apiclient</font></a>.http</strong></big></big></font></td
><td align=right valign=bottom
-><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/home/jcgregorio/projects/google-api-python-client/apiclient/http.py">/home/jcgregorio/projects/google-api-python-client/apiclient/http.py</a></font></td></tr></table>
+><font color="#ffffff" face="helvetica, arial"><a href=".">index</a><br><a href="file:/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/http.py">/usr/local/google/home/jcgregorio/projects/apiclient/apiclient/http.py</a></font></td></tr></table>
<p><tt>Classes to encapsulate a single HTTP request.<br>
<br>
The classes implement a command pattern, with every<br>
@@ -95,9 +95,11 @@
<td colspan=2><tt>A simple mock of <a href="#HttpRequest">HttpRequest</a><br>
<br>
Pass in a dictionary to the constructor that maps request methodIds to<br>
-tuples of (httplib2.Response, content) that should be returned when that<br>
-method is called. None may also be passed in for the httplib2.Response, in<br>
-which case a 200 OK response will be generated.<br>
+tuples of (httplib2.Response, content, opt_expected_body) that should be<br>
+returned when that method is called. None may also be passed in for the<br>
+httplib2.Response, in which case a 200 OK response will be generated.<br>
+If an opt_expected_body (str or dict) is provided, it will be compared to<br>
+the body and UnexpectedBodyError will be raised on inequality.<br>
<br>
Example:<br>
response = '{"data": {"id": "tag:google.c...'<br>
@@ -109,8 +111,9 @@
apiclient.discovery.build("buzz", "v1", requestBuilder=requestBuilder)<br>
<br>
Methods that you do not supply a response for will return a<br>
-200 OK with an empty string as the response content. The methodId<br>
-is taken from the rpcName in the discovery document.<br>
+200 OK with an empty string as the response content or raise an excpetion if<br>
+check_unexpected is set to True. The methodId is taken from the rpcName<br>
+in the discovery document.<br>
<br>
For more details see the project wiki.<br> </tt></td></tr>
<tr><td> </td>
@@ -120,7 +123,7 @@
<a href="#HttpRequest">HttpRequest</a>.execute(). See that method for the description of the<br>
parameters and the expected response.</tt></dd></dl>
-<dl><dt><a name="RequestMockBuilder-__init__"><strong>__init__</strong></a>(self, responses)</dt><dd><tt>Constructor for <a href="#RequestMockBuilder">RequestMockBuilder</a><br>
+<dl><dt><a name="RequestMockBuilder-__init__"><strong>__init__</strong></a>(self, responses, check_unexpected<font color="#909090">=False</font>)</dt><dd><tt>Constructor for <a href="#RequestMockBuilder">RequestMockBuilder</a><br>
<br>
The constructed <a href="__builtin__.html#object">object</a> should be a callable <a href="__builtin__.html#object">object</a><br>
that can replace the class HttpResponse.<br>
@@ -128,7 +131,9 @@
responses - A dictionary that maps methodIds into tuples<br>
of (httplib2.Response, content). The methodId<br>
comes from the 'rpcName' field in the discovery<br>
- document.</tt></dd></dl>
+ document.<br>
+check_unexpected - A boolean setting whether or not UnexpectedMethodError<br>
+ should be raised on unsupplied method.</tt></dd></dl>
<hr>
Data descriptors defined here:<br>